mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-17 16:11:29 +00:00
API: getHeadlines: check for feed_id correctly
This commit is contained in:
@@ -186,7 +186,7 @@ class API extends Handler {
|
|||||||
|
|
||||||
function getHeadlines() {
|
function getHeadlines() {
|
||||||
$feed_id = clean($_REQUEST["feed_id"]);
|
$feed_id = clean($_REQUEST["feed_id"]);
|
||||||
if ($feed_id != "") {
|
if (is_int($feed_id)) {
|
||||||
|
|
||||||
if (is_numeric($feed_id)) $feed_id = (int) $feed_id;
|
if (is_numeric($feed_id)) $feed_id = (int) $feed_id;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user