summaryrefslogtreecommitdiff
path: root/classes/api.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-28 15:28:37 +0400
committerAndrew Dolgov <[email protected]>2013-03-28 15:28:37 +0400
commit66ca7c30975a0435f7c8a2aa6c1009f201ccec8c (patch)
tree8cc1fcb137d29c2b5d0524433ac73fb2ea660507 /classes/api.php
parenteb734e52254e46f90c49a1919652f7aefd2ff989 (diff)
api: add include_empty to getCategories/getFeedTree
Diffstat (limited to 'classes/api.php')
-rw-r--r--classes/api.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/classes/api.php b/classes/api.php
index 1efa3865f..d1733842c 100644
--- a/classes/api.php
+++ b/classes/api.php
@@ -125,6 +125,7 @@ class API extends Handler {
function getCategories() {
$unread_only = sql_bool_to_bool($_REQUEST["unread_only"]);
$enable_nested = sql_bool_to_bool($_REQUEST["enable_nested"]);
+ $include_empty = (int)$_REQUEST['include_empty'];
// TODO do not return empty categories, return Uncategorized and standard virtual cats
@@ -147,7 +148,7 @@ class API extends Handler {
$cats = array();
while ($line = db_fetch_assoc($result)) {
- if ($line["num_feeds"] > 0 || $line["num_cats"] > 0) {
+ if ($include_empty || $line["num_feeds"] > 0 || $line["num_cats"] > 0) {
$unread = getFeedUnread($this->link, $line["id"], true);
if ($enable_nested)
@@ -705,9 +706,12 @@ class API extends Handler {
}
function getFeedTree() {
+ $include_empty = (int)$_REQUEST['include_empty'];
+
$pf = new Pref_Feeds($this->link, $_REQUEST);
$_REQUEST['mode'] = 2;
+ $_REQUEST['force_show_empty'] = $include_empty;
if ($pf){
$data = $pf->makefeedtree();