]> git.wh0rd.org - tt-rss.git/commitdiff
tweak filter display
authorAndrew Dolgov <fox@bah.spb.su>
Sat, 13 Dec 2008 12:42:58 +0000 (13:42 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sat, 13 Dec 2008 12:42:58 +0000 (13:42 +0100)
modules/pref-filters.php

index 10a974a999ac7fc5f42f899c8856dba1940e8207..2bf4c151602f3a34968e983336e5e12969f4d37e 100644 (file)
                                                <td width=\"20%\"><a href=\"javascript:updateFilterList('reg_exp')\">".__('Match')."</a></td>
                                                <td width=\"\"><a href=\"javascript:updateFilterList('feed_title')\">".__('Feed')."</a></td>
                                                <td width=\"20%\"><a href=\"javascript:updateFilterList('filter_type')\">".__('Field')."</a></td>
-                                               <td width=\"20%\"><a href=\"javascript:updateFilterList('action_param')\">".__('Perform action')."</a></td>"; 
+                                               <td width=\"20%\"><a href=\"javascript:updateFilterList('action_param')\">".__('Params')."</a></td>"; 
 
                                }
 
                                if (!$line["feed_title"]) $line["feed_title"] = __("All feeds");
 
                                if (!$line["action_param"]) {
-                                       #$line["action_param"] = "&mdash;";
+                                       $line["action_param"] = "&mdash;";
                                } else if ($line["action_name"] == "score") {
 
                                        $score_pic = get_score_pic($line["action_param"]);
                                }
        
                                print "<td $onclick>" . $line["filter_type_descr"] . "$inverse_label</td>";
-                               print "<td $onclick>" . $line["action_description"] . " " . 
-                                       $line["action_param"] . "</td>";
+                               print "<td $onclick>" . $line["action_param"] . "</td>";
 
                                print "</tr>";