Skip to content

Commit 8907efc

Browse files
authored
bugfix(zend) Deprecated: Array and string offset access syntax with curly braces is deprecated (#1345)
1 parent a681455 commit 8907efc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Zend/Wildfire/Plugin/FirePhp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ protected function _encodeObject($object, $objectDepth = 1, $arrayDepth = 1)
737737

738738
$name = $raw_name = $just_name;
739739

740-
if ($name{0} == "\0") {
740+
if ($name[0] == "\0") {
741741
$parts = explode("\0", $name);
742742
$name = $parts[2];
743743
}

0 commit comments

Comments
 (0)