Changeset 618cb0d in github for program/include/rcube_message.php


Ignore:
Timestamp:
Sep 10, 2010 9:22:54 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
cb3dfdfe
Parents:
ed302bb
Message:
  • Don't trim spaces from the end of line when converting to format=flowed
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_message.php

    r1a2f837 r618cb0d  
    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.