diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-09-14 17:51:49 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-09-14 17:51:49 +0200 |
commit | f58fefe5e2a33e18ee471a44ecb249acbbcb8074 (patch) | |
tree | cd9270df6f1a424d3fcea7aa951f3a77355c9707 /console.php | |
parent | 666bbbe06085451c12e4e55b886703e823eabf07 (diff) | |
download | nextcloud-server-f58fefe5e2a33e18ee471a44ecb249acbbcb8074.tar.gz nextcloud-server-f58fefe5e2a33e18ee471a44ecb249acbbcb8074.zip |
Check all installed apps for console commands
Diffstat (limited to 'console.php')
-rw-r--r-- | console.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console.php b/console.php index 30f4b729214..b8dd5e08790 100644 --- a/console.php +++ b/console.php @@ -26,7 +26,7 @@ if (!OC::$CLI) { $defaults = new OC_Defaults; $application = new Application($defaults->getName(), \OC_Util::getVersionString()); require_once 'core/register_command.php'; -foreach(OC_App::getEnabledApps() as $app) { +foreach(OC_App::getAllApps() as $app) { $file = OC_App::getAppPath($app).'/appinfo/register_command.php'; if(file_exists($file)) { require $file; |