From fc13d3f8d7ac09b3067dff58a1a140259eabe17a Mon Sep 17 00:00:00 2001 From: rlanvin Date: Sat, 27 Jun 2015 14:27:02 +0300 Subject: [PATCH] More PHP 5.3 compatibility fixes --- src/RRule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RRule.php b/src/RRule.php index e62e5ae..882fdb8 100755 --- a/src/RRule.php +++ b/src/RRule.php @@ -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); } } }