mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 09:55:56 +00:00
if backend request 'op' is empty fixed
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
set_include_path(__DIR__ ."/include" . PATH_SEPARATOR .
|
set_include_path(__DIR__ ."/include" . PATH_SEPARATOR .
|
||||||
get_include_path());
|
get_include_path());
|
||||||
|
|
||||||
$op = $_REQUEST["op"];
|
$op = $_REQUEST['op'] ?? '';
|
||||||
$method = !empty($_REQUEST['subop']) ?
|
$method = !empty($_REQUEST['subop']) ?
|
||||||
$_REQUEST['subop'] :
|
$_REQUEST['subop'] :
|
||||||
$_REQUEST["method"] ?? false;
|
$_REQUEST["method"] ?? false;
|
||||||
|
|||||||
Reference in New Issue
Block a user