fix escaping in viewfeed
This commit is contained in:
parent
8e3f7217a8
commit
3c81ae1aec
12
backend.php
12
backend.php
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue