summaryrefslogtreecommitdiff
path: root/modules/pref-filters.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-19 15:09:16 +0100
committerAndrew Dolgov <[email protected]>2007-05-19 15:09:16 +0100
commit474390311fd646db88acfdbff7dcc7c57ac7249e (patch)
tree67f57e9be22939a10581de2a5133a455b7513954 /modules/pref-filters.php
parent83fe113a39e78e06654c76cd33b645a9247c7f64 (diff)
remove db_unescape_string() hack
Diffstat (limited to 'modules/pref-filters.php')
-rw-r--r--modules/pref-filters.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/pref-filters.php b/modules/pref-filters.php
index 7445c0e0d..3c0f6129c 100644
--- a/modules/pref-filters.php
+++ b/modules/pref-filters.php
@@ -10,7 +10,7 @@
$result = db_query($link,
"SELECT * FROM ttrss_filters WHERE id = '$filter_id' AND owner_uid = " . $_SESSION["uid"]);
- $reg_exp = htmlspecialchars(db_unescape_string(db_fetch_result($result, 0, "reg_exp")));
+ $reg_exp = htmlspecialchars(db_fetch_result($result, 0, "reg_exp"));
$filter_type = db_fetch_result($result, 0, "filter_type");
$feed_id = db_fetch_result($result, 0, "feed_id");
$action_id = db_fetch_result($result, 0, "action_id");
@@ -285,11 +285,11 @@
print "<tr class=\"$class\" $this_row_id>";
- $line["reg_exp"] = htmlspecialchars(db_unescape_string($line["reg_exp"]));
+ $line["reg_exp"] = htmlspecialchars($line["reg_exp"]);
if (!$line["feed_title"]) $line["feed_title"] = __("All feeds");
- $line["feed_title"] = htmlspecialchars(db_unescape_string($line["feed_title"]));
+ $line["feed_title"] = htmlspecialchars($line["feed_title"]);
print "<td align='center'><input onclick='toggleSelectPrefRow(this, \"filter\");'
type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";