diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-30 13:49:17 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-30 13:49:17 +0000 |
| commit | 67a13c3f72e0b43cfcfc2ff2f8022e3b4da08263 (patch) | |
| tree | e6e9deb4552c5aeda814f0e60d3b4557359c15b5 | |
| parent | d094b852d13ad643af6eeeeb39c455c726c362fc (diff) | |
- Fix parse error from last commit (grrrrr, do tests before commit!)
git-svn-id: https://svn.roundcube.net/trunk@5517 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/rcube_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_ldap.php b/roundcubemail/program/include/rcube_ldap.php index 4d65bfa7a..aa8035696 100644 --- a/roundcubemail/program/include/rcube_ldap.php +++ b/roundcubemail/program/include/rcube_ldap.php @@ -236,7 +236,7 @@ class rcube_ldap extends rcube_addressbook $replaces = array('%dn' => '', '%dc' => $dc, '%d' => $d, '%fu' => $fu, '%u' => $u); if ($this->prop['search_base_dn'] && $this->prop['search_filter']) { - if (!empty$this->prop['search_bind_dn']) && !empty($this->prop['search_bind_pw'])) { + if (!empty($this->prop['search_bind_dn']) && !empty($this->prop['search_bind_pw'])) { $this->bind($this->prop['search_bind_dn'], $this->prop['search_bind_pw']); } |
