fix types on RPC counter replies

This commit is contained in:
Andrew Dolgov 2012-10-11 12:50:13 +04:00
parent 0ef32f48b2
commit 12e6de7296
1 changed files with 6 additions and 6 deletions

View File

@ -1421,7 +1421,7 @@
/* Special case: NULL category doesn't actually exist in the DB */ /* Special case: NULL category doesn't actually exist in the DB */
$cv = array("id" => 0, "kind" => "cat", $cv = array("id" => 0, "kind" => "cat",
"counter" => ccache_find($link, 0, $_SESSION["uid"], true)); "counter" => (int) ccache_find($link, 0, $_SESSION["uid"], true));
array_push($ret_arr, $cv); array_push($ret_arr, $cv);
@ -1631,7 +1631,7 @@
} }
$cv = array("id" => "global-unread", $cv = array("id" => "global-unread",
"counter" => $global_unread); "counter" => (int) $global_unread);
array_push($ret_arr, $cv); array_push($ret_arr, $cv);
@ -1641,7 +1641,7 @@
$subscribed_feeds = db_fetch_result($result, 0, "fn"); $subscribed_feeds = db_fetch_result($result, 0, "fn");
$cv = array("id" => "subscribed-feeds", $cv = array("id" => "subscribed-feeds",
"counter" => $subscribed_feeds); "counter" => (int) $subscribed_feeds);
array_push($ret_arr, $cv); array_push($ret_arr, $cv);
@ -1687,7 +1687,7 @@
$count = getFeedUnread($link, $i); $count = getFeedUnread($link, $i);
$cv = array("id" => $i, $cv = array("id" => $i,
"counter" => $count); "counter" => (int) $count);
// if (get_pref($link, 'EXTENDED_FEEDLIST')) // if (get_pref($link, 'EXTENDED_FEEDLIST'))
// $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total"); // $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
@ -1715,7 +1715,7 @@
$count = getFeedUnread($link, $id); $count = getFeedUnread($link, $id);
$cv = array("id" => $id, $cv = array("id" => $id,
"counter" => $count); "counter" => (int) $count);
if ($descriptions) if ($descriptions)
$cv["description"] = $label_name; $cv["description"] = $label_name;
@ -1760,7 +1760,7 @@
$cv = array("id" => $id, $cv = array("id" => $id,
"updated" => $last_updated, "updated" => $last_updated,
"counter" => $count, "counter" => (int) $count,
"has_img" => (int) $has_img); "has_img" => (int) $has_img);
if ($last_error) if ($last_error)