From 67a8c5073cc45c1f9beb8f25d66f1d64540950de Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 4 Nov 2024 20:27:17 +0000 Subject: [PATCH] Fix installation --- src/Module/Install.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Module/Install.php b/src/Module/Install.php index f9d9782250..171474e6a3 100644 --- a/src/Module/Install.php +++ b/src/Module/Install.php @@ -87,7 +87,7 @@ class Install extends BaseModule // so we may not have a css at all. Here we set a static css file for the install procedure pages Renderer::$theme['stylesheet'] = $this->baseUrl . '/view/install/style.css'; - $this->currentWizardStep = ($_POST['pass'] ?? '') ?: self::SYSTEM_CHECK; + $this->currentWizardStep = ($_REQUEST['pass'] ?? '') ?: self::SYSTEM_CHECK; } protected function post(array $request = []) @@ -164,6 +164,7 @@ class Install extends BaseModule break; } + DI::baseUrl()->redirect('install?pass=' . $this->currentWizardStep); } protected function content(array $request = []): string -- 2.39.5