Fix undefined array index

This commit is contained in:
Jay Trees 2022-04-08 16:15:11 +02:00
parent 9a6dc2bf51
commit 20b4fc24c3

View file

@ -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();