summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-13 15:26:27 +0100
committerAndrew Dolgov <[email protected]>2005-12-13 15:26:27 +0100
commit601a5e04eed1c1f38aa71199b1006d9c990209db (patch)
tree788e9c5d32176eef03e55ff66b8b4131101b4e83 /backend.php
parent7160700cbf738093201b8015de8e8e58451a8aa1 (diff)
fix xml category counters response for updateAllFeeds
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/backend.php b/backend.php
index a4d604179..1062e1e41 100644
--- a/backend.php
+++ b/backend.php
@@ -608,6 +608,9 @@
if (strchr($omode, "l")) getLabelCounters($link);
if (strchr($omode, "f")) getFeedCounters($link);
if (strchr($omode, "t")) getTagCounters($link);
+ if (get_pref($link, 'ENABLE_FEED_CATS')) {
+ getCategoryCounters($link);
+ }
getGlobalCounters($link);
print "</rpc-reply>";
}