summaryrefslogtreecommitdiffstats
path: root/apps/contacts/ajax/contacts.php
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-06-24 22:24:54 +0200
committerThomas Tanghus <thomas@tanghus.net>2012-06-24 22:25:32 +0200
commite845e567496c38aa56cda9f217f52aedf8b05f57 (patch)
tree9383da15c71fadc3c6bf7890c11493afdd2010d3 /apps/contacts/ajax/contacts.php
parent3afbc3d2dc3c36145411926f1b59de0401fe6876 (diff)
downloadnextcloud-server-e845e567496c38aa56cda9f217f52aedf8b05f57.tar.gz
nextcloud-server-e845e567496c38aa56cda9f217f52aedf8b05f57.zip
Remove excessive debugging.
Diffstat (limited to 'apps/contacts/ajax/contacts.php')
-rw-r--r--apps/contacts/ajax/contacts.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/contacts/ajax/contacts.php b/apps/contacts/ajax/contacts.php
index 16730ec9474..2ce6de1696b 100644
--- a/apps/contacts/ajax/contacts.php
+++ b/apps/contacts/ajax/contacts.php
@@ -18,7 +18,6 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('contacts');
$active_addressbooks = OC_Contacts_Addressbook::active(OCP\USER::getUser());
-error_log('active_addressbooks: '.print_r($active_addressbooks, true));
$contacts_addressbook = array();
$ids = array();
@@ -29,9 +28,7 @@ foreach($active_addressbooks as $addressbook) {
$contacts_addressbook[$addressbook['id']]['displayname'] = $addressbook['displayname'];
}
}
-error_log('ids: '.print_r($ids, true));
$contacts_alphabet = OC_Contacts_VCard::all($ids);
-error_log('contacts_alphabet: '.print_r($contacts_alphabet, true));
// Our new array for the contacts sorted by addressbook
foreach($contacts_alphabet as $contact) {