mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 21:25:55 +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)) {
|
if (parent::before($method)) {
|
||||||
header("Content-Type: text/html"); # required for iframe
|
header("Content-Type: text/html"); # required for iframe
|
||||||
|
|
||||||
$this->param = $_REQUEST["param"];
|
$this->param = ($_REQUEST["param"] ?? false);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user