summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib/Mail/mimePart.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-20 06:55:17 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-20 06:55:17 +0000
commit28c502b6494e7abeee8eb41af828089e48ca559a (patch)
tree9048a46a804ddb1a72fe0b183c506f8460776cc2 /roundcubemail/program/lib/Mail/mimePart.php
parent4e16a8370b2670d1d25d6140e6a8bbc3c32829cf (diff)
- typo (#1485933)
git-svn-id: https://svn.roundcube.net/trunk@2663 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/Mail/mimePart.php')
-rw-r--r--roundcubemail/program/lib/Mail/mimePart.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/Mail/mimePart.php b/roundcubemail/program/lib/Mail/mimePart.php
index fb121d37e..c478c8222 100644
--- a/roundcubemail/program/lib/Mail/mimePart.php
+++ b/roundcubemail/program/lib/Mail/mimePart.php
@@ -186,7 +186,7 @@ class Mail_mimePart {
if (isset($contentType['type'])) {
$headers['Content-Type'] = $contentType['type'];
if (isset($contentType['charset'])) {
- $headers['Content-Type'] .= " charset={$contentType['charset']}";
+ $headers['Content-Type'] .= "; charset={$contentType['charset']}";
}
if (isset($contentType['name'])) {
$headers['Content-Type'] .= ';' . MAIL_MIMEPART_CRLF;