From: Matthias Schmidt Date: Sat, 5 Aug 2017 08:25:23 +0000 (+0200) Subject: Fix calculation of setup progress X-Git-Tag: 3.1.0_Alpha_1~102 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9c5fbe651b523f84ef8fdaac5f1909df55e6c0d6;p=GitHub%2FWoltLab%2FWCF.git Fix calculation of setup progress See #2322 --- diff --git a/wcfsetup/install/files/lib/system/WCFSetup.class.php b/wcfsetup/install/files/lib/system/WCFSetup.class.php index 12831378ec..97a5815d4d 100644 --- a/wcfsetup/install/files/lib/system/WCFSetup.class.php +++ b/wcfsetup/install/files/lib/system/WCFSetup.class.php @@ -278,22 +278,22 @@ class WCFSetup extends WCF { break; case 'logFiles': - $this->calcProgress(14); + $this->calcProgress(21); $this->logFiles(); break; case 'installLanguage': - $this->calcProgress(15); + $this->calcProgress(22); $this->installLanguage(); break; case 'createUser': - $this->calcProgress(16); + $this->calcProgress(23); $this->createUser(); break; case 'installPackages': - $this->calcProgress(17); + $this->calcProgress(24); $this->installPackages(); break; }