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

Commit

Permalink
ZF-9416
Browse files Browse the repository at this point in the history
Applied patch for fixing Zend_Json_Encoder's incorrect handling of Iterator objects

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22452 44c647ce-9c0f-0410-b52a-842ac1e357ba
  • Loading branch information
ralph committed Jun 18, 2010
1 parent 2d1223a commit a49e8f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Encoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ protected function _encodeObject(&$value)
foreach ($propCollection as $name => $propValue) {
if (isset($propValue)) {
$props .= ','
. $this->_encodeValue($name)
. $this->_encodeString($name)
. ':'
. $this->_encodeValue($propValue);
}
Expand Down

0 comments on commit a49e8f2

Please sign in to comment.