From 6e1f7ad2e70595ead8352d2dbe179cec3cf7d18f Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Thu, 7 Oct 2010 08:34:34 +0000 Subject: [PATCH] email/phpmailer: fix for bug regarding the sending of the charset information reported by stefan.helzle-at-oscons.de --- phpgwapi/inc/class.phpmailer.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.phpmailer.inc.php b/phpgwapi/inc/class.phpmailer.inc.php index 2d1bdf7941..206ad0cb09 100644 --- a/phpgwapi/inc/class.phpmailer.inc.php +++ b/phpgwapi/inc/class.phpmailer.inc.php @@ -1295,7 +1295,7 @@ class PHPMailer { $encoding = $this->Encoding; } $result .= $this->TextLine('--' . $boundary); - $result .= sprintf("Content-Type: %s; charset =\"%s\"", $contentType, $charSet); + $result .= sprintf("Content-Type: %s; charset=\"%s\"", $contentType, $charSet); $result .= $this->LE; $result .= $this->HeaderLine('Content-Transfer-Encoding', $encoding); $result .= $this->LE;