mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-26 01:07:40 -04:00
fever: fix warning of unset array key (#4056)
This commit is contained in:
@@ -508,7 +508,7 @@ class FeverAPI
|
||||
}
|
||||
} elseif (isset($_REQUEST['with_ids'])) {
|
||||
$entry_ids = explode(',', $_REQUEST['with_ids']);
|
||||
} else {
|
||||
} elseif (isset($_REQUEST['since_id'])) {
|
||||
// use the since_id argument to request the next $item_limit items
|
||||
$since_id = '' . $_REQUEST['since_id'];
|
||||
if (!ctype_digit($since_id)) {
|
||||
|
||||
Reference in New Issue
Block a user