From e5d60d69d4108a0e62270548117773244ca1905e Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 9 Dec 2009 08:18:47 +0000 Subject: - Use built-in json_encode() for proper JSON format in AJAX replies (and compat. with jQuery 1.4) --- program/include/rcube_json_output.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program/include/rcube_json_output.php') diff --git a/program/include/rcube_json_output.php b/program/include/rcube_json_output.php index ea23dc20b..cb8a7dbf4 100644 --- a/program/include/rcube_json_output.php +++ b/program/include/rcube_json_output.php @@ -239,7 +239,7 @@ class rcube_json_output if (!empty($this->callbacks)) $response['callbacks'] = $this->callbacks; - echo json_serialize($response); + echo json_encode($response); } @@ -255,7 +255,7 @@ class rcube_json_output foreach ($this->commands as $i => $args) { $method = array_shift($args); foreach ($args as $i => $arg) { - $args[$i] = json_serialize($arg); + $args[$i] = json_encode($arg); } $out .= sprintf( -- cgit v1.2.3