Fixed progress during WCFSetup
authorAlexander Ebert <ebert@woltlab.com>
Sat, 8 Jun 2013 16:09:45 +0000 (18:09 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Sat, 8 Jun 2013 16:09:45 +0000 (18:09 +0200)
wcfsetup/install/files/lib/system/WCFSetup.class.php

index 60340f1bcc1d56d01974b449e367dd0b2850dd23..2660027be1cc29a8d939a62053310aecf75f04de 100644 (file)
@@ -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));
        }