LdapConnection: Do not explicitly emit the bind password in the log
This commit is contained in:
parent
24eab867e5
commit
9587c363f6
|
@ -1199,7 +1199,7 @@ class LdapConnection implements Selectable, Inspectable
|
|||
. ($this->port ? ':' . $this->port : '');
|
||||
|
||||
if ($this->bound) {
|
||||
$bindParams = ' -D "' . $this->bindDn . '"' . ($this->bindPw ? ' -w "' . $this->bindPw . '"' : '');
|
||||
$bindParams = ' -D "' . $this->bindDn . '"' . ($this->bindPw ? ' -W' : '');
|
||||
}
|
||||
|
||||
if ($deref === LDAP_DEREF_NEVER) {
|
||||
|
|
Loading…
Reference in New Issue