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:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2018-04-23 16:58:50 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2018-04-23 16:58:50 +0300
commited5f53bd49cc739defefe2fce7e42579746ceed2 (patch)
tree95dd7cda7123259d903a583b28dbf40ea832d321 /apps/user_ldap/ajax
parent6b5132502e661e108a2862fa2ed631f88bc5e9dc (diff)
Access needs UserManager, missed to add in #8833
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/ajax')
-rw-r--r--apps/user_ldap/ajax/wizard.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php
index df178ac0a82..daee5ebf94d 100644
--- a/apps/user_ldap/ajax/wizard.php
+++ b/apps/user_ldap/ajax/wizard.php
@@ -69,7 +69,8 @@ $access = new \OCA\User_LDAP\Access(
$ldapWrapper,
$userManager,
new \OCA\User_LDAP\Helper(\OC::$server->getConfig()),
- \OC::$server->getConfig()
+ \OC::$server->getConfig(),
+ \OC::$server->getUserManager()
);
$wizard = new \OCA\User_LDAP\Wizard($configuration, $ldapWrapper, $access);