mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
fix several quote escaping issues
This commit is contained in:
+5
-2
@@ -896,6 +896,8 @@
|
|||||||
$feed_title = "?";
|
$feed_title = "?";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$feed_title = db_unescape_string($feed_title);
|
||||||
|
|
||||||
if ($feed < -10) error_reporting (0);
|
if ($feed < -10) error_reporting (0);
|
||||||
|
|
||||||
print "<div id=\"headlinesContainer\">";
|
print "<div id=\"headlinesContainer\">";
|
||||||
@@ -2260,7 +2262,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
while ($line = db_fetch_assoc($result)) {
|
while ($line = db_fetch_assoc($result)) {
|
||||||
printf("<option id='%d'>%s</option>", $line["id"], $line["title"]);
|
printf("<option id='%d'>%s</option>", $line["id"],
|
||||||
|
db_unescape_string($line["title"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</select> ";
|
print "</select> ";
|
||||||
@@ -2400,7 +2403,7 @@
|
|||||||
$is_selected = "";
|
$is_selected = "";
|
||||||
}
|
}
|
||||||
printf("<option $is_selected id='%d'>%s</option>",
|
printf("<option $is_selected id='%d'>%s</option>",
|
||||||
$tmp_line["id"], $tmp_line["title"]);
|
$tmp_line["id"], db_unescape_string($tmp_line["title"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</select></td>";
|
print "</select></td>";
|
||||||
|
|||||||
Reference in New Issue
Block a user