diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-22 22:02:05 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-23 08:41:12 +0100 |
commit | 7bf658ab180b6c15495f3033980ecf30eb61dc47 (patch) | |
tree | 4adaab3310cad4f20ae7309a5a322b791543a561 | |
parent | 83d5080e78fa481db3855da8fcd75f624f8cac1c (diff) | |
download | nextcloud-server-7bf658ab180b6c15495f3033980ecf30eb61dc47.tar.gz nextcloud-server-7bf658ab180b6c15495f3033980ecf30eb61dc47.zip |
Before installing new shipped apps we need to load authentication apps - fixes #22508
-rw-r--r-- | lib/private/updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/updater.php b/lib/private/updater.php index 78457ba3a80..f09910aba14 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -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); |