Skip to content

v1.5.1 hotfix for early php versions

Compare
Choose a tag to compare
@stleary stleary released this 31 Jan 03:58
· 45 commits to master since this release

PHP versions prior to 5.4 don't support short form array initialization: $myArray = [ 1=> 2 ];
Instead, use this form: $myArray = array( 1=>2 );
The Lunar phase array initialization had to be replaced.