diff options
| author | xue <> | 2007-03-05 12:16:54 +0000 | 
|---|---|---|
| committer | xue <> | 2007-03-05 12:16:54 +0000 | 
| commit | dcce8614a0631f64c8927c3e46b7a66bfdee5f1b (patch) | |
| tree | 674371fc7a72b6ce4505c601974ff862947cd9a5 | |
| parent | 391edbb22addfe835c62a506266ca694a9abc3e3 (diff) | |
Fixed JSON error.
| -rw-r--r-- | framework/Web/Javascripts/TJSON.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/framework/Web/Javascripts/TJSON.php b/framework/Web/Javascripts/TJSON.php index 63f77b40..b30a65d8 100644 --- a/framework/Web/Javascripts/TJSON.php +++ b/framework/Web/Javascripts/TJSON.php @@ -750,7 +750,7 @@ class TJSON  	protected function utf16be_to_utf8(&$str)
  	{
  		$uni = unpack('n*',$str);
 -		return unicode_to_utf8($uni);
 +		return $this->unicode_to_utf8($uni);
  	}
  }
 | 
