Changeset 5204 in subversion


Ignore:
Timestamp:
Sep 12, 2011 4:49:47 AM (21 months ago)
Author:
alec
Message:
  • Fix handling of binary attachments encoded with quoted-printable (#1488065)
Location:
trunk/roundcubemail
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r5202 r5204  
    22=========================== 
    33 
     4- Fix handling of binary attachments encoded with quoted-printable (#1488065) 
    45- Fix text-overflow:ellipsis issues on messages list in FF7 and Webkit (#1488061) 
    56- Fix setting title for truncated subject in IE (#1487128) 
  • trunk/roundcubemail/program/include/rcube_imap.php

    r5194 r5204  
    23872387        } 
    23882388 
     2389        // Remove NULL characters (#1486189)                                                                                       
     2390        $body = str_replace("\x00", '', $body); 
     2391 
    23892392        // convert charset (if text or message part) 
    23902393        if ($body && !$skip_charset_conv && 
  • trunk/roundcubemail/program/include/rcube_imap_generic.php

    r5190 r5204  
    24712471                    $line = rtrim($line, "\t\r\0\x0B"); 
    24722472                    $line = quoted_printable_decode($line); 
    2473                     // Remove NULL characters (#1486189) 
    2474                     $line = str_replace("\x00", '', $line); 
    24752473                // UUENCODE 
    24762474                } else if ($mode == 3) { 
Note: See TracChangeset for help on using the changeset viewer.