1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2025-04-04 21:25:21 +02:00

Release 1.6.3

This commit is contained in:
rlanvin 2019-01-13 09:49:03 +00:00
parent 37873779e4
commit 1373df401e
2 changed files with 10 additions and 2 deletions

View File

@ -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
@ -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

View File

@ -2370,7 +2370,7 @@ class RRule implements RRuleInterface
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(