summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-11-30 13:49:17 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-11-30 13:49:17 +0000
commit67a13c3f72e0b43cfcfc2ff2f8022e3b4da08263 (patch)
treee6e9deb4552c5aeda814f0e60d3b4557359c15b5
parentd094b852d13ad643af6eeeeb39c455c726c362fc (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.php2
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']);
}