diff options
author | alecpl <alec@alec.pl> | 2009-06-20 06:55:17 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-20 06:55:17 +0000 |
commit | 2dbc2d787a7d9acf85ac8b048d6a8a6c479ab428 (patch) | |
tree | d55f3ac1a7ae98c0539d8bdd0e24dbf61837aff0 /program/lib | |
parent | 816d662b3062c93d37d6a07f3ee4a0eb5b4800fd (diff) |
- typo (#1485933)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Mail/mimePart.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Mail/mimePart.php b/program/lib/Mail/mimePart.php index fb121d37e..c478c8222 100644 --- a/program/lib/Mail/mimePart.php +++ b/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; |