From a970edb1a28a5555776b81e9b8cc1db73c8ae98d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 12 Feb 2009 21:54:07 +0300 Subject: [PATCH] prefs: display label color indicators in filters list --- modules/pref-filters.php | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/modules/pref-filters.php b/modules/pref-filters.php index f2e3832e2..e8e1cd60e 100644 --- a/modules/pref-filters.php +++ b/modules/pref-filters.php @@ -432,7 +432,25 @@ $filter_params = array( "before" => __("before"), "after" => __("after")); - + + if ($line["action_name"] == 'label') { + + $tmp_result = db_query($link, "SELECT fg_color, bg_color + FROM ttrss_labels2 WHERE caption = '". + db_escape_string($line["action_param"])."' AND + owner_uid = " . $_SESSION["uid"]); + + $fg_color = db_fetch_result($tmp_result, 0, "fg_color"); + $bg_color = db_fetch_result($tmp_result, 0, "bg_color"); + + $tmp = "
+ α"; + $tmp .= "
"; + + $line["action_param"] = "$tmp " . $line["action_param"]; + } + if ($line["filter_type"] == 5) { if (!strtotime($line["reg_exp"])) {