Changeset 3959 in subversion


Ignore:
Timestamp:
Sep 10, 2010 9:22:54 AM (3 years ago)
Author:
alec
Message:
  • Don't trim spaces from the end of line when converting to format=flowed
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_message.php

    r3892 r3959  
    622622            // don't wrap quoted lines (to avoid wrapping problems) 
    623623            if ($line[0] != '>') 
    624                 $line = rc_wordwrap(rtrim($line), $length - 1, " \r\n"); 
     624                $line = rc_wordwrap(rtrim($line, "\r\n"), $length - 1, " \r\n"); 
    625625 
    626626            $out .= $line . "\r\n"; 
Note: See TracChangeset for help on using the changeset viewer.