From: Andrew Dolgov Date: Fri, 25 Dec 2009 13:10:14 +0000 (+0300) Subject: display label colors in headlines subtoolbar X-Git-Tag: 1.4.0~136 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=5163fc709e36417352cb56293e3bdd7aa1b989aa;p=tt-rss.git display label colors in headlines subtoolbar --- diff --git a/functions.php b/functions.php index 378242cb..0c23e7ec 100644 --- a/functions.php +++ b/functions.php @@ -4051,7 +4051,27 @@ print "". truncate_string($feed_title,30).""; } else { - print $feed_title; + if ($feed_id < -10) { + $label_id = -11-$feed_id; + + $result = db_query($link, "SELECT fg_color, bg_color + FROM ttrss_labels2 WHERE id = '$label_id' AND owner_uid = " . + $_SESSION["uid"]); + + if (db_num_rows($result) != 0) { + $fg_color = db_fetch_result($result, 0, "fg_color"); + $bg_color = db_fetch_result($result, 0, "bg_color"); + + print ""; + print $feed_title; + print ""; + } else { + print $feed_title; + } + + } else { + print $feed_title; + } } if ($search) {