- Fix "value continuation" MIME headers by adding required semicolon (#1485727)

release-0.6
alecpl 16 years ago
parent 5801afdf3e
commit 0ea8d3a08e

@ -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)

@ -436,7 +436,7 @@ class Mail_mimePart {
}
$headCount++;
}
$headers = implode(MAIL_MIMEPART_CRLF, $headers) . ';';
$headers = implode(';' . MAIL_MIMEPART_CRLF, $headers) . ';';
return $headers;
}

Loading…
Cancel
Save