Query contacts in batches of 20. Possible fix for oc-1126.
This commit is contained in:
parent
825d92d59c
commit
b2eac08ad3
1 changed files with 7 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue