diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-01 08:14:50 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-01 08:14:50 +0000 |
| commit | 35a178555258b1e56e9fc81f1dc0806c1fb7c311 (patch) | |
| tree | 35a8f42b3a427dac6f1c55ba2702ed830d7d427c /roundcubemail/program/include | |
| parent | 298a81bc63d7de7974e0a61cb6c78c029b380b60 (diff) | |
* removing @ (ldap_bind() shouldn't issue a warning anyway, and if it does, it is logged)
git-svn-id: https://svn.roundcube.net/trunk@1229 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_ldap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_ldap.inc b/roundcubemail/program/include/rcube_ldap.inc index 5403084b4..969101b2a 100644 --- a/roundcubemail/program/include/rcube_ldap.inc +++ b/roundcubemail/program/include/rcube_ldap.inc @@ -123,7 +123,7 @@ class rcube_ldap return false; } - if (@ldap_bind($this->conn, $dn, $pass)) { + if (ldap_bind($this->conn, $dn, $pass)) { return true; } |
