summaryrefslogtreecommitdiff
path: root/classes/pref
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-02-20 14:14:45 +0300
committerAndrew Dolgov <[email protected]>2020-02-20 14:14:45 +0300
commit60288f02e8947282bf9226f63d0ce052f9c9ac61 (patch)
tree822078eed6f56c050f4de79a5b8a62082c58dd2f /classes/pref
parent5b6d9cee2957c1d41288d31aada1edb826db1916 (diff)
1. feedtree: show counters for marked articles if view-mode == marked
2. hide/show relevant counter nodes using css 3. cleanup some counter-related code 4. compile default css into light theme to prevent cache-related issues
Diffstat (limited to 'classes/pref')
-rwxr-xr-xclasses/pref/feeds.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php
index b3aeec086..6d7295beb 100755
--- a/classes/pref/feeds.php
+++ b/classes/pref/feeds.php
@@ -1393,7 +1393,7 @@ class Pref_Feeds extends Handler_Protected {
$obj['items'] = array();
$obj['name'] = Feeds::getCategoryTitle($cat_id);
$obj['type'] = 'category';
- $obj['unread'] = (int) Feeds::getCategoryUnread($cat_id);
+ $obj['unread'] = -1; //(int) Feeds::getCategoryUnread($cat_id);
$obj['bare_id'] = $cat_id;
return $obj;