Ticket #1485933 (closed Patches: fixed)

Opened 9 months ago

Last modified 9 months ago

Missed ; in Content-Type

Reported by: lav@… Owned by:
Priority: 3 Milestone: 0.3-stable
Component: MIME parsing Version: svn-trunk
Severity: normal Keywords:
Cc:

Description

There is missed ; before charset:

Index: lib/Mail/mimePart.php =================================================================== --- lib/Mail/mimePart.php (revision 2653) +++ lib/Mail/mimePart.php (working copy) @@ -186,7 +186,7 @@

if (isset($contentTypetype?)) {

$headersContent-Type? = $contentTypetype?;

if (isset($contentTypecharset?)) {

- $headersContent-Type? .= " charset={$contentTypecharset?}"; + $headersContent-Type? .= "; charset={$contentTypecharset?}";

} if (isset($contentTypename?)) {

$headersContent-Type? .= ';' . MAIL_MIMEPART_CRLF;

Attachments

roundcube-charset.patch (0.7 KB) - added by lav@… 9 months ago.

Change History

Changed 9 months ago by lav@…

Changed 9 months ago by alec

  • status changed from new to closed
  • resolution set to fixed

Fixed in r2663

Note: See TracTickets for help on using tickets.