summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-02-08 17:05:23 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-02-08 17:05:23 +0000
commit8c247a51831d3495d6c8e32ad208c461aea7a444 (patch)
tree735b1ecc11c58a258c272be931c5d0fb355c53c3
parenta33b4bc903acdbb08e369f4a2c79c0a69f2a49b0 (diff)
- Fix "value continuation" MIME headers by adding required semicolon (#1485727)
git-svn-id: https://svn.roundcube.net/trunk@2281 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/CHANGELOG4
-rw-r--r--roundcubemail/program/lib/Mail/mimePart.php2
2 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG
index e6c4a85d6..189e815a5 100644
--- a/roundcubemail/CHANGELOG
+++ b/roundcubemail/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/roundcubemail/program/lib/Mail/mimePart.php b/roundcubemail/program/lib/Mail/mimePart.php
index b404fc522..01c6280a7 100644
--- a/roundcubemail/program/lib/Mail/mimePart.php
+++ b/roundcubemail/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;
}