summaryrefslogtreecommitdiffstats
path: root/settings/ajax
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-08-19 13:33:38 +0200
committerRobin Appelman <icewind@owncloud.com>2014-08-19 13:33:38 +0200
commitfdfc5c67f8e90ac0a439579e9a64d1a643686bd3 (patch)
tree49c30ace401ab4eab17be482ec6cb3a1cbf85399 /settings/ajax
parentfdb203ff1eedbad298984ca0670985cea52f619a (diff)
parentab590ce9a06cf8803eeef9555c66b20bea58041d (diff)
downloadnextcloud-server-fdfc5c67f8e90ac0a439579e9a64d1a643686bd3.tar.gz
nextcloud-server-fdfc5c67f8e90ac0a439579e9a64d1a643686bd3.zip
Merge pull request #9866 from owncloud/app-upgrade
Don't do app upgrades in the background
Diffstat (limited to 'settings/ajax')
-rw-r--r--settings/ajax/updateapp.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/settings/ajax/updateapp.php b/settings/ajax/updateapp.php
index 78f6775fe95..afaa9318fb2 100644
--- a/settings/ajax/updateapp.php
+++ b/settings/ajax/updateapp.php
@@ -33,7 +33,10 @@ if (!is_numeric($appId)) {
$appId = OC_App::cleanAppId($appId);
+\OC_Config::setValue('maintenance', true);
$result = OC_Installer::updateAppByOCSId($appId, $isShipped);
+\OC_Config::setValue('maintenance', false);
+
if($result !== false) {
OC_JSON::success(array('data' => array('appid' => $appId)));
} else {