Changeset 5204 in subversion
- Timestamp:
- Sep 12, 2011 4:49:47 AM (21 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap.php (modified) (1 diff)
-
program/include/rcube_imap_generic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r5202 r5204 2 2 =========================== 3 3 4 - Fix handling of binary attachments encoded with quoted-printable (#1488065) 4 5 - Fix text-overflow:ellipsis issues on messages list in FF7 and Webkit (#1488061) 5 6 - Fix setting title for truncated subject in IE (#1487128) -
trunk/roundcubemail/program/include/rcube_imap.php
r5194 r5204 2387 2387 } 2388 2388 2389 // Remove NULL characters (#1486189) 2390 $body = str_replace("\x00", '', $body); 2391 2389 2392 // convert charset (if text or message part) 2390 2393 if ($body && !$skip_charset_conv && -
trunk/roundcubemail/program/include/rcube_imap_generic.php
r5190 r5204 2471 2471 $line = rtrim($line, "\t\r\0\x0B"); 2472 2472 $line = quoted_printable_decode($line); 2473 // Remove NULL characters (#1486189)2474 $line = str_replace("\x00", '', $line);2475 2473 // UUENCODE 2476 2474 } else if ($mode == 3) {
Note: See TracChangeset
for help on using the changeset viewer.
