1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:35:56 +00:00

api/getHeadlines: increase limit to 200

This commit is contained in:
Andrew Dolgov
2013-04-18 12:36:27 +04:00
parent 1ffe3391f9
commit 6421b42963

View File

@@ -185,7 +185,7 @@ class API extends Handler {
$limit = (int)$this->dbh->escape_string($_REQUEST["limit"]);
if (!$limit || $limit >= 60) $limit = 60;
if (!$limit || $limit >= 200) $limit = 200;
$offset = (int)$this->dbh->escape_string($_REQUEST["skip"]);
$filter = $this->dbh->escape_string($_REQUEST["filter"]);