From: Alexander Ebert Date: Sat, 8 Jun 2013 16:09:45 +0000 (+0200) Subject: Fixed progress during WCFSetup X-Git-Tag: 2.0.0_Beta_4~97 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5b2c5ec376b4f3e101d385cbe3f0bf1267c11738;p=GitHub%2FWoltLab%2FWCF.git Fixed progress during WCFSetup --- diff --git a/wcfsetup/install/files/lib/system/WCFSetup.class.php b/wcfsetup/install/files/lib/system/WCFSetup.class.php index 60340f1bcc..2660027be1 100644 --- a/wcfsetup/install/files/lib/system/WCFSetup.class.php +++ b/wcfsetup/install/files/lib/system/WCFSetup.class.php @@ -238,7 +238,7 @@ class WCFSetup extends WCF { */ protected function calcProgress($currentStep) { // calculate progress - $progress = round((100 / 15) * ++$currentStep, 0); + $progress = round((100 / 18) * ++$currentStep, 0); self::getTPL()->assign(array('progress' => $progress)); }