From c34a4c85bde242c991baf1f383694e9a4fa82940 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 23 Mar 2021 10:47:06 +0300 Subject: clip max displayed counter value to 9999 because of container node width --- classes/pref/feeds.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes') diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php index 5f7635736..305da4376 100755 --- a/classes/pref/feeds.php +++ b/classes/pref/feeds.php @@ -140,7 +140,7 @@ class Pref_Feeds extends Handler_Protected { } foreach (array(-4, -3, -1, -2, 0, -6) as $i) { - array_push($cat['items'], $this->feedlist_init_feed($i)); + array_push($cat['items'], $this->feedlist_init_feed($i, false, 0)); } /* Plugin feeds for -1 */ -- cgit v1.2.3-54-g00ecf