alecpl
2010-09-10 618cb0d8dde52c2c8a181334e7a3c33fbc26c236
- Don't trim spaces from the end of line when converting to format=flowed


1 files modified
2 ■■■ changed files
program/include/rcube_message.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_message.php
@@ -621,7 +621,7 @@
        foreach (preg_split('/\r?\n/', trim($text)) as $line) {
            // don't wrap quoted lines (to avoid wrapping problems)
            if ($line[0] != '>')
                $line = rc_wordwrap(rtrim($line), $length - 1, " \r\n");
                $line = rc_wordwrap(rtrim($line, "\r\n"), $length - 1, " \r\n");
            $out .= $line . "\r\n";
        }