alecpl
2009-02-08 0ea8d3a08e6055293aaa689bff6525522986e71c
- Fix "value continuation" MIME headers by adding required semicolon (#1485727)


2 files modified
6 ■■■■ changed files
CHANGELOG 4 ●●●● patch | view | raw | blame | history
program/lib/Mail/mimePart.php 2 ●●● patch | view | raw | blame | history
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)
program/lib/Mail/mimePart.php
@@ -436,7 +436,7 @@
            }
            $headCount++;
        }
        $headers = implode(MAIL_MIMEPART_CRLF, $headers) . ';';
        $headers = implode(';' . MAIL_MIMEPART_CRLF, $headers) . ';';
        return $headers;
    }