]> source.dussan.org Git - nextcloud-server.git/commitdiff
Before installing new shipped apps we need to load authentication apps - fixes #22508
authorThomas Müller <thomas.mueller@tmit.eu>
Mon, 22 Feb 2016 21:02:05 +0000 (22:02 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 23 Feb 2016 07:41:12 +0000 (08:41 +0100)
lib/private/updater.php

index 78457ba3a804bc15e30791ef680162936d6199d1..f09910aba14a7f8c2c144a6b0bca60cb57e9e371 100644 (file)
@@ -325,6 +325,7 @@ class Updater extends BasicEmitter {
                        $this->doCoreUpgrade();
 
                        // install new shipped apps on upgrade
+                       OC_App::loadApps('authentication');
                        OC_Installer::installShippedApps();
 
                        // update all shipped apps
@@ -334,7 +335,6 @@ class Updater extends BasicEmitter {
                        // upgrade appstore apps
                        $this->upgradeAppStoreApps($disabledApps);
 
-
                        // post-upgrade repairs
                        $repair = new Repair(Repair::getRepairSteps());
                        $this->emitRepairMessages($repair);