make sure the shared ldap connection is rebound to the configured user after being used for password checking.
This commit is contained in:
parent
5fd1f552a3
commit
3fc232370e
1 changed files with 3 additions and 1 deletions
|
@ -898,7 +898,9 @@ class Access extends LDAPUtility {
|
|||
if(!$testConnection->setConfiguration($credentials)) {
|
||||
return false;
|
||||
}
|
||||
return $testConnection->bind();
|
||||
$result=$testConnection->bind();
|
||||
$this->connection->bind();
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue