diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-14 19:27:24 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-14 19:27:24 +0000 |
| commit | bb06657788d03c605837120a77291ad2c621986d (patch) | |
| tree | b62d80057c2cd7eced691b19259f900537ecb7e5 /roundcubemail/program/include | |
| parent | 15def3b1524d238d66ddd0e92e49d6e3cf41abcf (diff) | |
- Fix %dn replacement
git-svn-id: https://svn.roundcube.net/trunk@5339 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -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 76591e6cc..f33db0cf4 100644 --- a/roundcubemail/program/include/rcube_ldap.php +++ b/roundcubemail/program/include/rcube_ldap.php @@ -228,7 +228,7 @@ class rcube_ldap extends rcube_addressbook if ($bind_dn) { $dn = ldap_explode_dn($bind_dn, 1); - $replaces['%dn'] = $dn[0]; + $replaces = array('%dn' => $dn[0]) + $replaces; } } } |
