summaryrefslogtreecommitdiff
path: root/program/include/rcube_contacts.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-04-15 15:26:16 +0000
committerthomascube <thomas@roundcube.net>2011-04-15 15:26:16 +0000
commit569f8306db3f61831795f15793b1c8f749f94779 (patch)
tree1fa4d63fd5c189453e1ddae45db22adae843d753 /program/include/rcube_contacts.php
parent5c4c06665c23d9b8fe3d6a47e15d0b3f6daee368 (diff)
Fix vcard folding at 75 chars; don't fold vcards for internal storage
Diffstat (limited to 'program/include/rcube_contacts.php')
-rw-r--r--program/include/rcube_contacts.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php
index 705551b03..3c713fe19 100644
--- a/program/include/rcube_contacts.php
+++ b/program/include/rcube_contacts.php
@@ -551,7 +551,7 @@ class rcube_contacts extends rcube_addressbook
$words .= ' ' . self::normalize_string($value);
}
}
- $out['vcard'] = $vcard->export();
+ $out['vcard'] = $vcard->export(false);
foreach ($this->table_cols as $col) {
$key = $col;