mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-12 03:20:59 +02:00
Fix an undefined array key warning in 'catchupFeed'.
This commit is contained in:
parent
053b262aa7
commit
ce3e1756b3
@ -150,7 +150,7 @@ class RPC extends Handler_Protected {
|
||||
function catchupFeed() {
|
||||
$feed_id = clean($_REQUEST['feed_id']);
|
||||
$is_cat = clean($_REQUEST['is_cat']) == "true";
|
||||
$mode = clean($_REQUEST['mode']);
|
||||
$mode = clean($_REQUEST['mode'] ?? '');
|
||||
$search_query = clean($_REQUEST['search_query']);
|
||||
$search_lang = clean($_REQUEST['search_lang']);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user