summaryrefslogtreecommitdiff
path: root/modules/pref-filters.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-12-13 13:24:59 +0100
committerAndrew Dolgov <[email protected]>2008-12-13 13:24:59 +0100
commit0aeef22a9ea1f655ee0ffffaec1c1171ce20811d (patch)
treec303bfc5ebcba1f33733ef581870ddde8a68e5eb /modules/pref-filters.php
parenta8732d0c75290da7bbf869131e526fc82d50ce52 (diff)
filter UI tweaks
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>";