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) --- program/lib/Mail/mimePart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/lib/Mail') 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