summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-11-30 13:49:17 +0000
committeralecpl <alec@alec.pl>2011-11-30 13:49:17 +0000
commit03e520f1bacf8f231fc3866cf8e7fa3361326cdd (patch)
treeec7f13f74336678811e53dce5b4e2c1e95c2b635
parent2d08ec91ca8fb429da389b3107f3982565e8ca3b (diff)
- Fix parse error from last commit (grrrrr, do tests before commit!)
-rw-r--r--program/include/rcube_ldap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php
index 4d65bfa7a..aa8035696 100644
--- a/program/include/rcube_ldap.php
+++ b/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']);
}