1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

fix escaping in viewfeed

This commit is contained in:
Andrew Dolgov
2006-03-27 04:14:35 +01:00
parent 8e3f7217a8
commit 3c81ae1aec
+6 -6
View File
@@ -1098,12 +1098,12 @@
if ($op == "viewfeed") { if ($op == "viewfeed") {
$feed = $_GET["feed"]; $feed = db_escape_string($_GET["feed"]);
$skip = $_GET["skip"]; $skip = db_escape_string($_GET["skip"]);
$subop = $_GET["subop"]; $subop = db_escape_string($_GET["subop"]);
$view_mode = $_GET["view"]; $view_mode = db_escape_string($_GET["view"]);
$limit = $_GET["limit"]; $limit = db_escape_string($_GET["limit"]);
$cat_view = $_GET["cat"]; $cat_view = db_escape_string($_GET["cat"]);
if (!$skip) $skip = 0; if (!$skip) $skip = 0;