"Patch from Jean-Charles Passard <jcharles(at)provectio.org>: allows to use either uid or id to retrieve contacts

"
This commit is contained in:
Ralf Becker 2009-08-22 06:28:58 +00:00
parent fdbf3b207b
commit 7b63b57aae

View File

@ -290,7 +290,8 @@ class addressbook_ldap
}
else
{
$contact_id = ldap::quote(is_array($contact_id) ? $contact_id['id'] : $contact_id);
$contact_id = ldap::quote(!is_array($contact_id) ? $contact_id :
(isset ($contact_id['id']) ? $contact_id['id'] : $contact_id['uid']));
$filter = "(|(entryUUID=$contact_id)(uid=$contact_id))";
}
$rows = $this->_searchLDAP($GLOBALS['egw_info']['server']['ldap_contact_context'],