diff options
author | Tobia De Koninck <tobia@ledfan.be> | 2018-02-13 08:03:06 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-03-06 10:45:20 +0100 |
commit | 55b9a5d88689f41fa6ae7f7858bc800a495f4b74 (patch) | |
tree | b4edb7fa260532f19267d9e03b11e01dd26cd4e6 /lib/private/Updater.php | |
parent | 539fdaea1efa7fa35b321031554af8703d00737c (diff) | |
download | nextcloud-server-55b9a5d88689f41fa6ae7f7858bc800a495f4b74.tar.gz nextcloud-server-55b9a5d88689f41fa6ae7f7858bc800a495f4b74.zip |
Remove OC_App::disable method
Signed-off-by: Tobia De Koninck <tobia@ledfan.be>
Diffstat (limited to 'lib/private/Updater.php')
-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 c70113e1c7d..4dc8edc0272 100644 --- a/lib/private/Updater.php +++ b/lib/private/Updater.php @@ -395,7 +395,7 @@ class Updater extends BasicEmitter { if ($appManager->isShipped($app)) { throw new \UnexpectedValueException('The files of the app "' . $app . '" were not correctly replaced before running the update'); } - OC_App::disable($app); + \OC::$server->getAppManager()->disableApp($app); $this->emit('\OC\Updater', 'incompatibleAppDisabled', array($app)); } // no need to disable any app in case this is a non-core upgrade |