From b2eac08ad3a279ab81c508929c68d947bedbc9da Mon Sep 17 00:00:00 2001 From: Thomas Tanghus <thomas@tanghus.net> Date: Wed, 4 Jul 2012 16:54:00 +0200 Subject: [PATCH] Query contacts in batches of 20. Possible fix for oc-1126. --- apps/contacts/export.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/contacts/export.php b/apps/contacts/export.php index f84a10c138..ba7b06e40d 100644 --- a/apps/contacts/export.php +++ b/apps/contacts/export.php @@ -14,12 +14,16 @@ $contactid = isset($_GET['contactid']) ? $_GET['contactid'] : NULL; $nl = "\n"; if(isset($bookid)){ $addressbook = OC_Contacts_App::getAddressbook($bookid); - $cardobjects = OC_Contacts_VCard::all($bookid); + //$cardobjects = OC_Contacts_VCard::all($bookid); header('Content-Type: text/directory'); header('Content-Disposition: inline; filename=' . str_replace(' ', '_', $addressbook['displayname']) . '.vcf'); - foreach($cardobjects as $card) { - echo $card['carddata'] . $nl; + $start = 0; + while($cardobjects = OC_Contacts_VCard::all($bookid, $start, 20)){ + foreach($cardobjects as $card) { + echo $card['carddata'] . $nl; + } + $start += 20; } }elseif(isset($contactid)){ $data = OC_Contacts_App::getContactObject($contactid); -- GitLab