Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3369'
Browse files Browse the repository at this point in the history
Close #3369
  • Loading branch information
weierophinney committed Jan 7, 2013
2 parents 65a6aac + 97a44b2 commit 57a89f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Json/Decoder.php
Expand Up @@ -244,7 +244,7 @@ protected function _decodeObject()
protected function _decodeArray() protected function _decodeArray()
{ {
$result = array(); $result = array();
$starttok = $tok = $this->_getNextToken(); // Move past the '[' $tok = $this->_getNextToken(); // Move past the '['
$index = 0; $index = 0;


while ($tok && $tok != self::RBRACKET) { while ($tok && $tok != self::RBRACKET) {
Expand Down

0 comments on commit 57a89f8

Please sign in to comment.