mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:35:56 +00:00
fix some brackets issues in feed editor
This commit is contained in:
4
opml.php
4
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\"/>";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user