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 | |
parent | 5801afdf3ecc30b3eaaa19afa9d50ea42849271b (diff) |
- Fix "value continuation" MIME headers by adding required semicolon (#1485727)
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | program/lib/Mail/mimePart.php | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ CHANGELOG RoundCube Webmail --------------------------- +2009/02/08 (alec) +---------- +- Fix "value continuation" MIME headers by adding required semicolon (#1485727) + 2009/02/06 (alec) ---------- - Fix pressing select all/unread multiple times (#1485723) 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; } |