Changeset 66a3b03 in github


Ignore:
Timestamp:
Sep 12, 2011 4:49:47 AM (21 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
Children:
bd14f92
Parents:
5f129dd
Message:
  • Fix handling of binary attachments encoded with quoted-printable (#1488065)
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r5f129dd r66a3b03  
    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) 
  • program/include/rcube_imap.php

    rb7fd98e r66a3b03  
    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 && 
  • program/include/rcube_imap_generic.php

    r80152b33 r66a3b03  
    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.