summaryrefslogtreecommitdiff
path: root/modules/pref-filters.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-17 16:40:44 +0100
committerAndrew Dolgov <[email protected]>2008-05-17 16:40:44 +0100
commitc771953ddfb1450989d7405d38aff81129c0182a (patch)
treee454053a8dc0233207b5dd4da5a851351f425fa9 /modules/pref-filters.php
parenta95da1368ec6ed8e7a6e26c831cf160b71440766 (diff)
misc code cleanup
Diffstat (limited to 'modules/pref-filters.php')
-rw-r--r--modules/pref-filters.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/modules/pref-filters.php b/modules/pref-filters.php
index 4fb59d4ae..b7f29705e 100644
--- a/modules/pref-filters.php
+++ b/modules/pref-filters.php
@@ -27,8 +27,6 @@
print "<input type=\"hidden\" name=\"op\" value=\"pref-filters\">";
print "<input type=\"hidden\" name=\"id\" value=\"$filter_id\">";
print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
-
-// print "<div class=\"notice\"><b>Note:</b> filter will only apply to new articles.</div>";
$result = db_query($link, "SELECT id,description
FROM ttrss_filter_types ORDER BY description");
@@ -374,7 +372,6 @@
$onclick = "onclick='editFilter($filter_id)' title='".__('Click to edit')."'";
print "<td $onclick>" . $line["reg_exp"] . "</td>";
-
print "<td $onclick>" . $line["feed_title"] . "</td>";
$inverse_label = "";
@@ -383,11 +380,7 @@
$inverse_label = " <span class='insensitive'>".__('(Inverse)')."</span>";
}
- print "<td $onclick>" . $line["filter_type_descr"] . "$inverse_label</td>";
-
-/* print "<td><a href=\"javascript:editFilter($filter_id);\">" .
- $line["action_description"]."</td>"; */
-
+ print "<td $onclick>" . $line["filter_type_descr"] . "$inverse_label</td>";
print "<td $onclick>" . $line["action_param"] . "</td>";
print "</tr>";