From 0ea8d3a08e6055293aaa689bff6525522986e71c Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sun, 08 Feb 2009 12:05:23 -0500
Subject: [PATCH] - Fix "value continuation" MIME headers by adding required semicolon (#1485727)
---
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 b404fc5..01c6280 100644
--- a/program/lib/Mail/mimePart.php
+++ b/program/lib/Mail/mimePart.php
@@ -436,7 +436,7 @@
}
$headCount++;
}
- $headers = implode(MAIL_MIMEPART_CRLF, $headers) . ';';
+ $headers = implode(';' . MAIL_MIMEPART_CRLF, $headers) . ';';
return $headers;
}
--
Gitblit v1.9.1