diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-01-27 12:28:57 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-02-19 21:03:00 +0100 |
commit | 08907ee3e9a4267daa2268f20ed9dee3c9cc3328 (patch) | |
tree | 3f15f2dd0d6e6726795bbc19002092eda39208b4 /core/register_command.php | |
parent | 168ad09e8230a171c78f2bd4eacd7af63403b6fa (diff) | |
download | nextcloud-server-08907ee3e9a4267daa2268f20ed9dee3c9cc3328.tar.gz nextcloud-server-08907ee3e9a4267daa2268f20ed9dee3c9cc3328.zip |
Enable multiple apps at once
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php index 15bb37e4338..6bd1b1b18a9 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -61,7 +61,7 @@ $application->add(new \OC\Core\Command\Integrity\CheckCore( if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\App\Disable(\OC::$server->getAppManager())); - $application->add(new OC\Core\Command\App\Enable(\OC::$server->getAppManager())); + $application->add(new OC\Core\Command\App\Enable(\OC::$server->getAppManager(), \OC::$server->getGroupManager())); $application->add(new OC\Core\Command\App\Install()); $application->add(new OC\Core\Command\App\GetPath()); $application->add(new OC\Core\Command\App\ListApps(\OC::$server->getAppManager())); |