summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-15 15:34:05 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-15 15:34:05 +0000
commit1aaac868f280b118146e545db323fc4899d7f4bf (patch)
tree253486cea501080a12f9254788b674535cec817e /roundcubemail/program
parent28c52c097b7ddbeb8a89a517f91fc2ceefb3eeaf (diff)
Use CRLF + 1 space for folding
git-svn-id: https://svn.roundcube.net/trunk@4658 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/rcube_vcard.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_vcard.php b/roundcubemail/program/include/rcube_vcard.php
index fbe0783f1..fe9777df3 100644
--- a/roundcubemail/program/include/rcube_vcard.php
+++ b/roundcubemail/program/include/rcube_vcard.php
@@ -472,7 +472,7 @@ class rcube_vcard
for ($n = $c; $c < strlen($matches[1]); $c++) {
// break if length > 75 or mutlibyte character starts after position 71
if ($n > 75 || ($n > 71 && ord($matches[1][$c]) >> 6 == 3)) {
- $out .= "\n ";
+ $out .= "\r\n ";
$n = 0;
}
$out .= $matches[1][$c];