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"])) {