Index: trunk/phase3/includes/json/FormatJson.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | $jsonDec = $json->decode( $value ); |
60 | 60 | return $jsonDec; |
61 | 61 | } else { |
62 | | - return json_decode( $value, $assoc ); |
| 62 | + return wfObjectToArray( json_decode( $value, $assoc ) ); |
63 | 63 | } |
64 | 64 | } |
65 | 65 | |