diff options
Diffstat (limited to 'apps/admin_dependencies_chk/settings.php')
-rwxr-xr-x[-rw-r--r--] | apps/admin_dependencies_chk/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/admin_dependencies_chk/settings.php b/apps/admin_dependencies_chk/settings.php index 0cebc10198f..f4915c3d2fe 100644..100755 --- a/apps/admin_dependencies_chk/settings.php +++ b/apps/admin_dependencies_chk/settings.php @@ -77,7 +77,7 @@ $modules[] =array( foreach($modules as $key => $module) { $enabled = false ; foreach($module['modules'] as $app) { - if(OC_App::isEnabled($app) || $app=='core'){ + if(OCP\App::isEnabled($app) || $app=='core'){ $enabled = true; } } |