From 0ea8d3a08e6055293aaa689bff6525522986e71c Mon Sep 17 00:00:00 2001 From: alecpl Date: Sun, 8 Feb 2009 17:05:23 +0000 Subject: - Fix "value continuation" MIME headers by adding required semicolon (#1485727) --- CHANGELOG | 4 ++++ program/lib/Mail/mimePart.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index e6c4a85d6..189e815a5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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; } -- cgit v1.2.3