Closed GoogleCodeExporter closed 9 years ago
I've released 2.6.1 that has installer fixes.
The error you had, I still cannot see that happening, but made a "blind" fix.
It is possible, I guess, that some PHP version cannot handle shortcut notation
for function call and index accessor in the same line, like this
$value = $this->getSomeArrayValue()["index"];
so I separated them into two lines
$array = $this->getSomeArrayValue();
$value = $array["index"];
This should not be required, but hopefully this is enough.
Original comment by mollify....@gmail.com
on 2 Feb 2015 at 9:36
Original issue reported on code.google.com by
au20...@gmail.com
on 2 Feb 2015 at 7:35