diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-10-24 13:53:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 13:53:17 +0200 |
commit | 3eaf23f29f67dbb6077121cc24beaddd8d587504 (patch) | |
tree | 738ba69ef08701f9917206dc101b967035fa17c2 /lib/public | |
parent | 18601903052e389d7dbc25ff2603eb7091415ca0 (diff) | |
parent | f884e762bcf3e1737f1cdd5a4453ca0664087b61 (diff) | |
download | nextcloud-server-3eaf23f29f67dbb6077121cc24beaddd8d587504.tar.gz nextcloud-server-3eaf23f29f67dbb6077121cc24beaddd8d587504.zip |
Merge pull request #6920 from nextcloud/appmanager-usage
Use appmanager instead of OC_App for check for enabled app
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/App.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/App.php b/lib/public/App.php index 06dde22b8d1..250d33bf01f 100644 --- a/lib/public/App.php +++ b/lib/public/App.php @@ -127,9 +127,10 @@ class App { * * This function checks whether or not an app is enabled. * @since 4.0.0 + * @deprecated 13.0.0 use \OC::$server->getAppManager()->isEnabledForUser($appId) */ public static function isEnabled( $app ) { - return \OC_App::isEnabled( $app ); + return \OC::$server->getAppManager()->isEnabledForUser( $app ); } /** |