Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-02-05 15:54:31 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-11 21:42:09 +0400
commitc1241b169115e64c639513a1015607739a4e3e7b (patch)
treed77270aa5df2f6a202e6ed3e6b9124d5ba155599
parentad813da7b1336a0f5426e2defe0d790bb96b9d58 (diff)
Load authentication apps to get users from all backends - fixes #7019
-rw-r--r--apps/files/command/scan.php1
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');