summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2007-03-05 12:16:54 +0000
committerxue <>2007-03-05 12:16:54 +0000
commitdcce8614a0631f64c8927c3e46b7a66bfdee5f1b (patch)
tree674371fc7a72b6ce4505c601974ff862947cd9a5 /framework
parent391edbb22addfe835c62a506266ca694a9abc3e3 (diff)
Fixed JSON error.
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/Javascripts/TJSON.php2
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);
}
}