make sure the shared ldap connection is rebound to the configured user after being used for password checking.

This commit is contained in:
Donald Buczek 2013-10-18 17:13:36 +02:00 committed by Arthur Schiwon
parent 5fd1f552a3
commit 3fc232370e
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}
/**