1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-26 03:31:30 +00:00

experimental display of labelColorIndicators in FeedTree

This commit is contained in:
Andrew Dolgov
2010-11-21 16:11:14 +03:00
parent f69fcbd9ab
commit 9fe80bcdad
2 changed files with 21 additions and 3 deletions

View File

@@ -4232,9 +4232,13 @@
$label_id = -$line['id'] - 11;
$count = getFeedUnread($link, $label_id);
array_push($cat['items'], feedlist_init_feed($link, $label_id,
false, $count));
$feed = feedlist_init_feed($link, $label_id, false, $count);
$feed['fg_color'] = $line['fg_color'];
$feed['bg_color'] = $line['bg_color'];
array_push($cat['items'], $feed);
}
if ($enable_cats) {