summaryrefslogtreecommitdiffstats
path: root/settings/ajax
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-04-28 15:15:34 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-05-02 08:52:06 +0200
commite049953d1af24feeb57796ac4025f0f607ac1cdf (patch)
tree7b599af5deab65048396c6b17ed8f24b10f43f86 /settings/ajax
parent54f45f95f51dc14d6a7126170b3277a3ad57b608 (diff)
downloadnextcloud-server-e049953d1af24feeb57796ac4025f0f607ac1cdf.tar.gz
nextcloud-server-e049953d1af24feeb57796ac4025f0f607ac1cdf.zip
OC_Installer -> \OC\Installer
Diffstat (limited to 'settings/ajax')
-rw-r--r--settings/ajax/updateapp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/updateapp.php b/settings/ajax/updateapp.php
index 8521914884f..7ac32468fe4 100644
--- a/settings/ajax/updateapp.php
+++ b/settings/ajax/updateapp.php
@@ -50,7 +50,7 @@ $appId = OC_App::cleanAppId($appId);
$config = \OC::$server->getConfig();
$config->setSystemValue('maintenance', true);
try {
- $result = OC_Installer::updateAppByOCSId($appId);
+ $result = \OC\Installer::updateAppByOCSId($appId);
$config->setSystemValue('maintenance', false);
} catch(Exception $ex) {
$config->setSystemValue('maintenance', false);