diff options
author | alecpl <alec@alec.pl> | 2009-06-17 10:04:30 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-17 10:04:30 +0000 |
commit | 2e7ab6c5e1ebb8fc9c126ba881186754226fbd56 (patch) | |
tree | b5c5fdf60b9d81a4c540e8f9b11392a0332b3d68 | |
parent | 93c0be2e5aff131941b1cdc413f0ab622b8e7fe6 (diff) |
- typo
-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 bc8b471ba..c166f56d5 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; |