Merge pull request #8263 from LEDfan/add-key-to-contacts

Add key to every contact
remotes/origin/ldap_group_count
Thomas Müller 12 years ago
commit 0330481c5e
  1. 7
      lib/private/contactsmanager.php

@ -37,7 +37,12 @@ namespace OC {
$result = array();
foreach($this->address_books as $address_book) {
$r = $address_book->search($pattern, $searchProperties, $options);
$result = array_merge($result, $r);
$contacts = array();
foreach($r as $c){
$c['addressbook-key'] = $address_book->getKey();
$contacts[] = $c;
}
$result = array_merge($result, $contacts);
}
return $result;

Loading…
Cancel
Save