program/steps/addressbook/export.inc
@@ -21,12 +21,12 @@ // get contacts for this user $CONTACTS->set_page(1); $CONTACTS->set_pagesize(999); $result = $CONTACTS->list_records(); $CONTACTS->set_pagesize(99999); $result = $CONTACTS->list_records(null, 0, true); // send downlaod headers send_nocacheing_headers(); header('Content-Type: text/x-vcard; charset=UTF-8'); header('Content-Type: text/x-vcard; charset='.RCMAIL_CHARSET); header('Content-Disposition: attachment; filename="rcube_contacts.vcf"'); while ($result && ($row = $result->next())) { @@ -41,4 +41,3 @@ exit; ?>