summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-12-13 13:42:58 +0100
committerAndrew Dolgov <[email protected]>2008-12-13 13:42:58 +0100
commit08e618f7001c3b1dd77e3fc9e484387ed6b2e7c7 (patch)
treedb4c11f012b22b0e86beaa821aef61fd12a61d8c /modules
parentdf43d1fd507eb050a2d2ee6fa58263d654ef2ad3 (diff)
tweak filter display
Diffstat (limited to 'modules')
-rw-r--r--modules/pref-filters.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/pref-filters.php b/modules/pref-filters.php
index 10a974a99..2bf4c1516 100644
--- a/modules/pref-filters.php
+++ b/modules/pref-filters.php
@@ -366,7 +366,7 @@
<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>";
}
@@ -377,7 +377,7 @@
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"]);
@@ -418,8 +418,7 @@
}
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>";