From: Andrew Dolgov Date: Tue, 13 Dec 2005 14:26:27 +0000 (+0100) Subject: fix xml category counters response for updateAllFeeds X-Git-Tag: schema_freeze_for_1.1.1~47 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=601a5e04eed1c1f38aa71199b1006d9c990209db;p=tt-rss.git fix xml category counters response for updateAllFeeds --- diff --git a/backend.php b/backend.php index a4d60417..1062e1e4 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 ""; }