diff options
| author | alecpl <alec@alec.pl> | 2009-02-08 17:05:23 +0000 |
|---|---|---|
| committer | alecpl <alec@alec.pl> | 2009-02-08 17:05:23 +0000 |
| commit | 0ea8d3a08e6055293aaa689bff6525522986e71c (patch) | |
| tree | 7d6f4c26afa75c4018a8ef059fbed02a3828f374 /program/lib | |
| parent | 5801afdf3ecc30b3eaaa19afa9d50ea42849271b (diff) | |
- Fix "value continuation" MIME headers by adding required semicolon (#1485727)
Diffstat (limited to 'program/lib')
| -rw-r--r-- | program/lib/Mail/mimePart.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Mail/mimePart.php b/program/lib/Mail/mimePart.php index b404fc522..01c6280a7 100644 --- a/program/lib/Mail/mimePart.php +++ b/program/lib/Mail/mimePart.php @@ -436,7 +436,7 @@ class Mail_mimePart { } $headCount++; } - $headers = implode(MAIL_MIMEPART_CRLF, $headers) . ';'; + $headers = implode(';' . MAIL_MIMEPART_CRLF, $headers) . ';'; return $headers; } |
