From 87e788360a8d532bd1988db74f7736191c8c57b6 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 20 Jul 2017 13:08:43 +0200 Subject: [PATCH] Fixed calculation of setup steps See #2322 --- 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 4a0648aa94..12831378ec 100644 --- a/wcfsetup/install/files/lib/system/WCFSetup.class.php +++ b/wcfsetup/install/files/lib/system/WCFSetup.class.php @@ -209,7 +209,7 @@ class WCFSetup extends WCF { */ protected function calcProgress($currentStep) { // calculate progress - $progress = round((100 / 18) * ++$currentStep, 0); + $progress = round((100 / 25) * ++$currentStep, 0); self::getTPL()->assign(['progress' => $progress]); } -- 2.20.1