diff options
author | thomascube <thomas@roundcube.net> | 2011-04-15 15:34:05 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-04-15 15:34:05 +0000 |
commit | 58510fc58fdf4903aa9b80aa2c2a402874edb5c8 (patch) | |
tree | 4b41f6d34efc2bbc8990c4bb318d7e5a7c151b45 /program/include | |
parent | 569f8306db3f61831795f15793b1c8f749f94779 (diff) |
Use CRLF + 1 space for folding
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_vcard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_vcard.php b/program/include/rcube_vcard.php index fbe0783f1..fe9777df3 100644 --- a/program/include/rcube_vcard.php +++ b/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]; |