Fix undefined array index
This commit is contained in:
parent
9a6dc2bf51
commit
20b4fc24c3
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ class Page
|
|||
/**
|
||||
* Redirect
|
||||
*/
|
||||
if ($options && $options->getOption('isInstalled') && isset($_SERVER['QUERY_STRING'])) {
|
||||
if ($options && $options->getOption('isInstalled') && isset($_SESSION['_GET'])) {
|
||||
$url = new URL(http_build_query($_SESSION['_GET']));
|
||||
$redirect_to = $url->getPretty();
|
||||
|
||||
|
|
Loading…
Reference in a new issue