From 6e0584e9308e0dc0049d2d59d2b0c86f619720b0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 16 Oct 2005 15:48:33 +0100 Subject: fix some brackets issues in feed editor --- opml.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opml.php') diff --git a/opml.php b/opml.php index bcfa31700..2e87c037a 100644 --- a/opml.php +++ b/opml.php @@ -24,8 +24,8 @@ $result = db_query($link, "SELECT * FROM ttrss_feeds ORDER BY title"); while ($line = db_fetch_assoc($result)) { - $title = $line["title"]; - $url = $line["feed_url"]; + $title = htmlspecialchars($line["title"]); + $url = htmlspecialchars($line["feed_url"]); print ""; } -- cgit v1.2.3