diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2014-08-02 16:51:51 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2014-08-02 16:51:51 +0200 |
commit | 8ee8be9b86032bd23965dd37589691db6abfceb8 (patch) | |
tree | 7e1f0c03adce2f7b4d24d4cfc68194e2276df5b6 | |
parent | 05ea61095f406dfdd04afd801b68399008e25bef (diff) |
Correct reference to old function get_dn()
-rw-r--r-- | program/lib/Roundcube/rcube_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_ldap.php b/program/lib/Roundcube/rcube_ldap.php index 7fdcbc806..a26f87b0a 100644 --- a/program/lib/Roundcube/rcube_ldap.php +++ b/program/lib/Roundcube/rcube_ldap.php @@ -333,7 +333,7 @@ class rcube_ldap extends rcube_addressbook $res = $ldap->search($search_base_dn, $search_filter, 'sub', $search_attribs); if ($res) { $res->rewind(); - $replaces['%dn'] = $res->get_dn(); + $replaces['%dn'] = key($res->entries(TRUE)); // add more replacements from 'search_bind_attrib' config if ($search_bind_attrib) { |