Opened 4 years ago
Closed 4 years ago
#1485933 closed Feature Patches (fixed)
Missed ; in Content-Type
| Reported by: | lav@… | Owned by: | |
|---|---|---|---|
| Priority: | 3 | Milestone: | 0.3-stable |
| Component: | MIME parsing | Version: | git-master |
| 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 (1)
Change History (2)
Changed 4 years ago by lav@…
comment:1 Changed 4 years ago by alec
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

Fixed in [2dbc2d78]