Skip to content

Commit

Permalink
Release 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rlanvin committed Jan 13, 2019
1 parent 3787377 commit 1373df4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

- n/a

## [1.6.3] - 2019-01-13

### Fixed

- Fix error when timezone is an offset instead of an olson name. [#61](https://github.com/rlanvin/php-rrule/issues/61)
- Fix VALUE is a valid param of EXDATE [#62](https://github.com/rlanvin/php-rrule/issues/62)

## [1.6.2] - 2018-09-18

### Fixed
Expand Down Expand Up @@ -144,7 +151,8 @@

- First release, everything before that was unversioned (`dev-master` was used).

[Unreleased]: https://github.com/rlanvin/php-rrule/compare/v1.6.2...HEAD
[Unreleased]: https://github.com/rlanvin/php-rrule/compare/v1.6.3...HEAD
[1.6.3]: https://github.com/rlanvin/php-rrule/compare/v1.6.2...v1.6.3
[1.6.2]: https://github.com/rlanvin/php-rrule/compare/v1.6.1...v1.6.2
[1.6.1]: https://github.com/rlanvin/php-rrule/compare/v1.6.0...v1.6.1
[1.6.0]: https://github.com/rlanvin/php-rrule/compare/v1.5.1...v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion src/RRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -2370,7 +2370,7 @@ public function humanReadable(array $opt = array())

if ( $timezone === 'Z' ) {
$timezone = 'GMT'; // otherwise IntlDateFormatter::create fails because... reasons.
} elseif ( preg_match( '/[-+]\d{2}/', $timezone ) ) {
} elseif ( preg_match('/[-+]\d{2}/',$timezone) ) {
$timezone = 'GMT'.$timezone; // otherwise IntlDateFormatter::create fails because... other reasons.
}
$formatter = \IntlDateFormatter::create(
Expand Down

0 comments on commit 1373df4

Please # to comment.