From 563b9c782d0cfbcebd7686cd2fce202d874ec9df Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 25 Nov 2010 13:20:37 +0300 Subject: remove xml from getAllCounters rpc call, use pure JSON --- modules/backend-rpc.php | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'modules') diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php index e93571207..93d8f074b 100644 --- a/modules/backend-rpc.php +++ b/modules/backend-rpc.php @@ -282,29 +282,27 @@ if ($subop == "updateAllFeeds" || $subop == "getAllCounters") { + header("Content-Type: text/plain"); + $last_article_id = (int) $_REQUEST["last_article_id"]; - print ""; + $reply = array(); - if ($seq) - print "$seq"; + if ($seq) $reply['seq'] = $seq; if ($last_article_id != getLastArticleId($link)) { - print ""; + $reply['counters'] = getGlobalCounters($link); } - print_runtime_info($link); + $reply['runtime-info'] = make_runtime_info($link); - print ""; + print json_encode($reply); return; } @@ -983,7 +981,7 @@ } if ($subop == "getTweetInfo") { - header("Content-Type: text/html"); + header("Content-Type: text/plain"); $id = db_escape_string($_REQUEST['id']); $result = db_query($link, "SELECT title, link -- cgit v1.2.3