summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-10-21 14:43:27 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-10-21 14:43:27 +0200
commit1060be0886c8f75c7bd0730897119583a5b11a73 (patch)
tree367c7ac7497ae315523a799c3dc69dcb63232d81 /lib
parent33144a5d806bbb01208588b7eaed69c1739e9839 (diff)
parentee42e9d489415f0fdd49c73ccafd4967fa95d40e (diff)
downloadnextcloud-server-1060be0886c8f75c7bd0730897119583a5b11a73.tar.gz
nextcloud-server-1060be0886c8f75c7bd0730897119583a5b11a73.zip
Merge pull request #19927 from owncloud/install-shipped-apps-on-upgrade
Install new shipped apps on upgrade
Diffstat (limited to 'lib')
-rw-r--r--lib/private/updater.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/updater.php b/lib/private/updater.php
index 70d68863788..c18b8fb4bc8 100644
--- a/lib/private/updater.php
+++ b/lib/private/updater.php
@@ -315,6 +315,9 @@ class Updater extends BasicEmitter {
if ($this->updateStepEnabled) {
$this->doCoreUpgrade();
+ // install new shipped apps on upgrade
+ OC_Installer::installShippedApps();
+
// update all shipped apps
$disabledApps = $this->checkAppsRequirements();
$this->doAppUpgrade();