1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00

xml-rpc: getCategories() - return unread article count (closes #260)

This commit is contained in:
Andrew Dolgov 2009-11-29 11:17:22 +03:00
parent 2e58d4e527
commit e36f43d211

View File

@ -93,12 +93,13 @@
while ($line = db_fetch_assoc($result)) {
$unread = getFeedUnread($link, $line["id"]);
$unread = getFeedUnread($link, $line["id"], true);
$line_struct = new xmlrpcval(
array(
"title" => new xmlrpcval($line["title"]),
"id" => new xmlrpcval($line["id"], "int")
"id" => new xmlrpcval($line["id"], "int"),
"unread" => new xmlrpcval($unread, "int")
),
"struct");