1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2025-02-20 09:54:16 +01:00

Fix typo in variable name

Fix #34
This commit is contained in:
rlanvin 2017-05-15 10:14:37 +01:00
parent c220aee917
commit fa48bc4fa2
2 changed files with 7 additions and 2 deletions

View File

@ -2,9 +2,12 @@
## [Unreleased]
## [1.5.1] - 2017-05-15
### Fixed
- Throw exception when passing a float instead of an int (e.g. INTERVAL=1.5) instead of casting silently
- Variable name typo [#34](https://github.com/rlanvin/php-rrule/issues/34)
## [1.5.0] - 2017-05-07
@ -119,7 +122,8 @@
- First release, everything before that was unversioned (`dev-master` was used).
[Unreleased]: https://github.com/rlanvin/php-rrule/compare/v1.5.0...HEAD
[Unreleased]: https://github.com/rlanvin/php-rrule/compare/v1.5.1...HEAD
[1.5.1]: https://github.com/rlanvin/php-rrule/compare/v1.5.0...v1.5.1
[1.5.0]: https://github.com/rlanvin/php-rrule/compare/v1.4.2...v1.5.0
[1.4.2]: https://github.com/rlanvin/php-rrule/compare/v1.4.1...v1.4.2
[1.4.1]: https://github.com/rlanvin/php-rrule/compare/v1.4.0...v1.4.1

View File

@ -660,12 +660,13 @@ class RRule implements RRuleInterface
static public function parseRfcString($string)
{
trigger_error('parseRfcString() is deprecated - use new RRule(), RRule::createFromRfcString() or \RRule\RfcParser::parseRRule() if necessary',E_USER_DEPRECATED);
return RfcParser::parseRRule($sring);
return RfcParser::parseRRule($string);
}
/**
* Take a RFC 5545 string and returns either a RRule or a RSet.
*
* @param string $string The RFC string
* @param bool $force_rset Force a RSet to be returned.
* @return RRule|RSet
*