From: Alexander Ebert Date: Thu, 20 Jul 2017 11:08:43 +0000 (+0200) Subject: Fixed calculation of setup steps X-Git-Tag: 3.1.0_Alpha_1~236 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=87e788360a8d532bd1988db74f7736191c8c57b6;p=GitHub%2FWoltLab%2FWCF.git Fixed calculation of setup steps See #2322 --- 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]); }