From 569f8306db3f61831795f15793b1c8f749f94779 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 15 Apr 2011 11:26:16 -0400 Subject: [PATCH] Fix vcard folding at 75 chars; don't fold vcards for internal storage --- program/steps/addressbook/export.inc | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/program/steps/addressbook/export.inc b/program/steps/addressbook/export.inc index 1f4f119..69f8e2e 100644 --- a/program/steps/addressbook/export.inc +++ b/program/steps/addressbook/export.inc @@ -32,7 +32,7 @@ while ($result && ($row = $result->next())) { // we already have a vcard record if ($row['vcard']) { - echo $row['vcard'] . "\n"; + echo rcube_vcard::rfc2425_fold($row['vcard']) . "\n"; } // copy values into vcard object else { @@ -46,7 +46,7 @@ } } - echo $vcard->export() . "\n"; + echo $vcard->export(true) . "\n"; } } -- Gitblit v1.9.1