Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fJSON.php
r560 r563 Hide Line Numbers 18 18 * @link http://flourishlib.com/fJSON 19 19 * 20 * @version 1.0.0b3 20 * @version 1.0.0b4 21 * @changes 1.0.0b4 Fixed a bug with ::decode() where JSON objects could lose all but the first key: value pair [wb, 2009-05-06] 21 22 * @changes 1.0.0b3 Updated the class to be consistent with PHP 5.2.9+ for encoding and decoding invalid data [wb, 2009-05-04] 22 23 * @changes 1.0.0b2 Changed @ error suppression operator to `error_reporting()` calls [wb, 2009-01-26] … … 416 417 417 418 if ($ref_match) { 418 $stack[] = array($type, $match);419 $stack[] = array($type, &$match); 419 420 $stack_end = end($stack); 420 421 } … … 457 458 } 458 459 $last = $type; 459 460 unset($match); 460 461 } 461 462
