diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-04-15 15:26:16 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-04-15 15:26:16 +0000 |
| commit | 28c52c097b7ddbeb8a89a517f91fc2ceefb3eeaf (patch) | |
| tree | 54de7b61a76f91a76b010c729117d4c2621946cc /roundcubemail/program/include/rcube_contacts.php | |
| parent | cdf4e346d56d03b9a51964dc438a9dfe8addee73 (diff) | |
Fix vcard folding at 75 chars; don't fold vcards for internal storage
git-svn-id: https://svn.roundcube.net/trunk@4657 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_contacts.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_contacts.php b/roundcubemail/program/include/rcube_contacts.php index 705551b03..3c713fe19 100644 --- a/roundcubemail/program/include/rcube_contacts.php +++ b/roundcubemail/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; |
