summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorwei <>2007-03-31 07:17:50 +0000
committerwei <>2007-03-31 07:17:50 +0000
commit42bccdcb813170f80e16aeed4958a95170bc0a03 (patch)
tree74e3dc6af1c0049557bc5534f5be4c9d6b18999e /framework
parent1ebbcf85205f983531ef3b43dce4a98114714f0b (diff)
fixed missing $this in TJSON
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);
}
}