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

More PHP 5.3 compatibility fixes

This commit is contained in:
rlanvin 2015-06-27 14:27:02 +03:00
parent b192c38752
commit fc13d3f8d7

View File

@ -490,7 +490,7 @@ class RRule implements \Iterator, \ArrayAccess
foreach ( $this->byminute as $minute ) {
foreach ( $this->bysecond as $second ) {
// fixme another format?
$this->timeset[] = [$hour,$minute,$second];
$this->timeset[] = array($hour,$minute,$second);
}
}
}