api/getCategories: return virtual categories and Uncategorized

This commit is contained in:
Andrew Dolgov 2011-11-29 09:22:38 +04:00
parent e9ed9ec844
commit 75b901d929
1 changed files with 10 additions and 0 deletions

View File

@ -191,6 +191,16 @@
}
}
foreach (array(-2,-1,0) as $cat_id) {
$unread = getFeedUnread($link, $cat_id, true);
if ($unread || !$unread_only) {
array_push($cats, array("id" => $cat_id,
"title" => getCategoryTitle($link, $cat_id),
"unread" => $unread));
}
}
print api_wrap_reply(API_STATUS_OK, $seq, $cats);
break;