From: Andrew Dolgov Date: Tue, 2 May 2006 06:01:27 +0000 (+0100) Subject: fix several quote escaping issues X-Git-Tag: 1.0.6~2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3fdaa0670ea2f6de0e9b1799666bdcb1015eb693;p=tt-rss.git fix several quote escaping issues --- diff --git a/backend.php b/backend.php index a9f79667..90b18f54 100644 --- a/backend.php +++ b/backend.php @@ -896,6 +896,8 @@ $feed_title = "?"; } + $feed_title = db_unescape_string($feed_title); + if ($feed < -10) error_reporting (0); print "
"; @@ -2260,7 +2262,8 @@ } while ($line = db_fetch_assoc($result)) { - printf("", $line["id"], $line["title"]); + printf("", $line["id"], + db_unescape_string($line["title"])); } print " "; @@ -2400,7 +2403,7 @@ $is_selected = ""; } printf("", - $tmp_line["id"], $tmp_line["title"]); + $tmp_line["id"], db_unescape_string($tmp_line["title"])); } print "";