Ticket #1485933 (closed Patches: fixed)
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
Change History
Note: See
TracTickets for help on using
tickets.
