diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-11 18:41:08 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-11 18:41:08 +0100 |
commit | 3699728a3a02dd17ea617a7e8f781c09e837f360 (patch) | |
tree | 8b368954e921b7ea84c6cb8a6a6b60668735cdb6 /apps/files | |
parent | c442a03d3a1a7c15d3954e5fd8c48898ee768951 (diff) | |
parent | 9d9f360b7742a061586f18f7f9b2910b7ddd081d (diff) | |
download | nextcloud-server-3699728a3a02dd17ea617a7e8f781c09e837f360.tar.gz nextcloud-server-3699728a3a02dd17ea617a7e8f781c09e837f360.zip |
Merge pull request #7085 from owncloud/quick-fix-7019-master
Load authentication apps to get users from all backends
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/command/scan.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/command/scan.php b/apps/files/command/scan.php index 25ab70af362..f334f29a939 100644 --- a/apps/files/command/scan.php +++ b/apps/files/command/scan.php @@ -58,6 +58,7 @@ class Scan extends Command { protected function execute(InputInterface $input, OutputInterface $output) { if ($input->getOption('all')) { + \OC_App::loadApps('authentication'); $users = $this->userManager->search(''); } else { $users = $input->getArgument('user_id'); |