summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-10-16 15:48:33 +0100
committerAndrew Dolgov <[email protected]>2005-10-16 15:48:33 +0100
commit6e0584e9308e0dc0049d2d59d2b0c86f619720b0 (patch)
treec9246576eaadd36836e41a7a6bdaad4b14072779 /opml.php
parentb5aa95e736af7bfa586abf013c7a3d5b2dac1f7e (diff)
fix some brackets issues in feed editor
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php4
1 files changed, 2 insertions, 2 deletions
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 "<outline text=\"$title\" xmlUrl=\"$url\"/>";
}