From 9719466bed29eb0379409db8d1838d19295bf3ea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 21 Aug 2023 10:18:25 +0200 Subject: [PATCH] Fix `nextStep` in WCFSetup if system requirements are not fulfilled see https://www.woltlab.com/community/thread/301247-refusing-to-skip-a-step/ --- wcfsetup/install/files/lib/system/WCFSetup.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/WCFSetup.class.php b/wcfsetup/install/files/lib/system/WCFSetup.class.php index e0e3bf9a0f..f954846f36 100644 --- a/wcfsetup/install/files/lib/system/WCFSetup.class.php +++ b/wcfsetup/install/files/lib/system/WCFSetup.class.php @@ -427,7 +427,7 @@ final class WCFSetup extends WCF 'wcf', [ 'system' => $system, - 'nextStep' => 'unzipFiles', + 'nextStep' => 'configureDB', ] ) ); -- 2.20.1