diff --git a/program/steps/addressbook/export.inc b/program/steps/addressbook/export.inc index 509be596f..1f4f11936 100644 --- a/program/steps/addressbook/export.inc +++ b/program/steps/addressbook/export.inc @@ -32,7 +32,7 @@ header('Content-Disposition: attachment; filename="rcube_contacts.vcf"'); while ($result && ($row = $result->next())) { // we already have a vcard record if ($row['vcard']) { - echo $row['vcard']; + echo $row['vcard'] . "\n"; } // copy values into vcard object else { @@ -45,8 +45,8 @@ while ($result && ($row = $result->next())) { $vcard->set($field, $value, strtoupper($section)); } } - - echo $vcard->export(); + + echo $vcard->export() . "\n"; } }