1
0
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:
Andrew Dolgov
2005-10-16 15:48:33 +01:00
parent b5aa95e736
commit 6e0584e930
3 changed files with 17 additions and 8 deletions

View File

@@ -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\"/>";
}