diff options
Diffstat (limited to 'settings/ajax')
-rw-r--r-- | settings/ajax/updateapp.php | 2 |
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); |