diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2005-10-16 15:48:33 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2005-10-16 15:48:33 +0100 |
| commit | 6e0584e9308e0dc0049d2d59d2b0c86f619720b0 (patch) | |
| tree | c9246576eaadd36836e41a7a6bdaad4b14072779 /opml.php | |
| parent | b5aa95e736af7bfa586abf013c7a3d5b2dac1f7e (diff) | |
fix some brackets issues in feed editor
Diffstat (limited to 'opml.php')
| -rw-r--r-- | opml.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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\"/>"; } |