From 5b2c5ec376b4f3e101d385cbe3f0bf1267c11738 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Sat, 8 Jun 2013 18:09:45 +0200 Subject: [PATCH] Fixed progress during WCFSetup --- 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 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)); } -- 2.20.1