diff options
author | wei <> | 2007-03-31 07:17:50 +0000 |
---|---|---|
committer | wei <> | 2007-03-31 07:17:50 +0000 |
commit | 42bccdcb813170f80e16aeed4958a95170bc0a03 (patch) | |
tree | 74e3dc6af1c0049557bc5534f5be4c9d6b18999e | |
parent | 1ebbcf85205f983531ef3b43dce4a98114714f0b (diff) |
fixed missing $this in TJSON
-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);
}
}
|