summaryrefslogtreecommitdiff
path: root/program/lib/Mail
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-02-08 17:05:23 +0000
committeralecpl <alec@alec.pl>2009-02-08 17:05:23 +0000
commit0ea8d3a08e6055293aaa689bff6525522986e71c (patch)
tree7d6f4c26afa75c4018a8ef059fbed02a3828f374 /program/lib/Mail
parent5801afdf3ecc30b3eaaa19afa9d50ea42849271b (diff)
- Fix "value continuation" MIME headers by adding required semicolon (#1485727)
Diffstat (limited to 'program/lib/Mail')
-rw-r--r--program/lib/Mail/mimePart.php2
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;
}