Merge pull request #9522 from nextcloud/backport/9325/stable13
[stable13] Fix for unbound cloned LDAP connections
This commit is contained in:
commit
01d3586a0f
|
@ -125,6 +125,9 @@ class Connection extends LDAPUtility {
|
||||||
public function __clone() {
|
public function __clone() {
|
||||||
$this->configuration = new Configuration($this->configPrefix,
|
$this->configuration = new Configuration($this->configPrefix,
|
||||||
!is_null($this->configID));
|
!is_null($this->configID));
|
||||||
|
if(count($this->bindResult) !== 0 && $this->bindResult['result'] === true) {
|
||||||
|
$this->bindResult = [];
|
||||||
|
}
|
||||||
$this->ldapConnectionRes = null;
|
$this->ldapConnectionRes = null;
|
||||||
$this->dontDestruct = true;
|
$this->dontDestruct = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue