From 9c5fbe651b523f84ef8fdaac5f1909df55e6c0d6 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Sat, 5 Aug 2017 10:25:23 +0200 Subject: [PATCH] Fix calculation of setup progress See #2322 --- wcfsetup/install/files/lib/system/WCFSetup.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- 2.20.1