diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-02-08 17:05:23 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-02-08 17:05:23 +0000 |
| commit | 8c247a51831d3495d6c8e32ad208c461aea7a444 (patch) | |
| tree | 735b1ecc11c58a258c272be931c5d0fb355c53c3 /roundcubemail/program/lib | |
| parent | a33b4bc903acdbb08e369f4a2c79c0a69f2a49b0 (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
Diffstat (limited to 'roundcubemail/program/lib')
| -rw-r--r-- | roundcubemail/program/lib/Mail/mimePart.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
