summaryrefslogtreecommitdiff
path: root/modules/pref-filters.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/pref-filters.php')
-rw-r--r--modules/pref-filters.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/pref-filters.php b/modules/pref-filters.php
index a63b8513d..cfb3194d2 100644
--- a/modules/pref-filters.php
+++ b/modules/pref-filters.php
@@ -349,7 +349,7 @@
<td width=\"\"><a href=\"javascript:updateFilterList('feed_title')\">".__('Feed')."</a></td>
<td width=\"20%\"><a href=\"javascript:updateFilterList('filter_type')\">".__('Match')."</a></td>
<!-- <td width=\"15%\"><a href=\"javascript:updateFilterList('action_description')\">".__('Action')."</a></td> -->
- <td width=\"20%\"><a href=\"javascript:updateFilterList('action_param')\">".__('Params')."</a></td>";
+ <td width=\"20%\"><a href=\"javascript:updateFilterList('action_param')\">".__('Action')."</a></td>";
}
@@ -360,7 +360,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"]);
@@ -401,7 +401,8 @@
}
print "<td $onclick>" . $line["filter_type_descr"] . "$inverse_label</td>";
- print "<td $onclick>" . $line["action_param"] . "</td>";
+ print "<td $onclick>" . $line["action_description"] . " " .
+ $line["action_param"] . "</td>";
print "</tr>";