- Fix redundant line break in flowed format (#1488146)

pull/1/head
alecpl 13 years ago
parent 6ac6be5f4f
commit 9aab5e5456

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix redundant line break in flowed format (#1488146)
- TinyMCE:
- updated to 3.4.6
- security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore)

@ -766,7 +766,7 @@ function rcmail_plain_body($body, $flowed=false)
// previous line is flowed?
if (isset($body[$last]) && $body[$n]
&& $last != $last_sig
&& $last !== $last_sig
&& $body[$last][strlen($body[$last])-1] == ' '
) {
$body[$last] .= $body[$n];

Loading…
Cancel
Save