diff options
Diffstat (limited to 'apps/user_ldap/lib/LDAPProviderFactory.php')
-rw-r--r-- | apps/user_ldap/lib/LDAPProviderFactory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/LDAPProviderFactory.php b/apps/user_ldap/lib/LDAPProviderFactory.php index 528af001037..f2915b43163 100644 --- a/apps/user_ldap/lib/LDAPProviderFactory.php +++ b/apps/user_ldap/lib/LDAPProviderFactory.php @@ -52,7 +52,7 @@ class LDAPProviderFactory implements ILDAPProviderFactory { public function getLDAPProvider() { $dbConnection = $this->serverContainer->getDatabaseConnection(); $userMapping = new UserMapping($dbConnection); - return new LDAPProvider($this->serverContainer, new Helper(), + return new LDAPProvider($this->serverContainer, new Helper($this->serverContainer->getConfig()), new DeletedUsersIndex($this->serverContainer->getConfig(), $dbConnection, $userMapping)); } |