LdapConnection: Do not explicitly emit the bind password in the log

This commit is contained in:
Johannes Meyer 2015-11-27 08:13:13 +01:00
parent 24eab867e5
commit 9587c363f6
1 changed files with 1 additions and 1 deletions

View File

@ -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) {