aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/contactsmanager.php
diff options
context:
space:
mode:
authorTobia De Koninck <tobia@ledfan.be>2014-04-22 12:46:09 +0200
committerTobia De Koninck <tobia@ledfan.be>2014-04-22 12:46:09 +0200
commitefff7dd2a43b604bd883e4e0aca9a74e4bb81222 (patch)
tree621f9ec2b78c7be5315658852e4039e0a6f7d1ee /lib/private/contactsmanager.php
parentb78c1373b681102f2904a4270c45b3030ffe22a5 (diff)
downloadnextcloud-server-efff7dd2a43b604bd883e4e0aca9a74e4bb81222.tar.gz
nextcloud-server-efff7dd2a43b604bd883e4e0aca9a74e4bb81222.zip
Change key to addressbook-key
Diffstat (limited to 'lib/private/contactsmanager.php')
-rw-r--r--lib/private/contactsmanager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php
index 47ade48dcf0..4299d88017a 100644
--- a/lib/private/contactsmanager.php
+++ b/lib/private/contactsmanager.php
@@ -39,7 +39,7 @@ namespace OC {
$r = $address_book->search($pattern, $searchProperties, $options);
$contacts = array();
foreach($r as $c){
- $c['key'] = $address_book->getKey();
+ $c['addressbook-key'] = $address_book->getKey();
$contacts[] = $c;
}
$result = array_merge($result, $contacts);