diff --git a/library/Zend/Json/Decoder.php b/library/Zend/Json/Decoder.php index 74c0f5d78b5..fd39af7778c 100644 --- a/library/Zend/Json/Decoder.php +++ b/library/Zend/Json/Decoder.php @@ -244,7 +244,7 @@ protected function _decodeObject() protected function _decodeArray() { $result = array(); - $starttok = $tok = $this->_getNextToken(); // Move past the '[' + $tok = $this->_getNextToken(); // Move past the '[' $index = 0; while ($tok && $tok != self::RBRACKET) {