mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 21:35:56 +00:00
dlg: fix unset param warning
This commit is contained in:
@@ -7,7 +7,7 @@ class Dlg extends Handler_Protected {
|
||||
if (parent::before($method)) {
|
||||
header("Content-Type: text/html"); # required for iframe
|
||||
|
||||
$this->param = $_REQUEST["param"];
|
||||
$this->param = ($_REQUEST["param"] ?? false);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user