From 617d7dc90adce8375b3bf7bebe566d12db12075f Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Wed, 23 Feb 2011 13:27:30 +0000 Subject: [PATCH] with php5.3 EncodeQP uses quoted_printable_encode, which messes up content eventually --- 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 9278e28ba1..123b53c805 100644 --- a/phpgwapi/inc/class.phpmailer.inc.php +++ b/phpgwapi/inc/class.phpmailer.inc.php @@ -1735,7 +1735,7 @@ class PHPMailer { */ public function EncodeQP($string, $line_max = 76, $space_conv = false) { if (function_exists('quoted_printable_encode')) { //Use native function if it's available (>= PHP5.3) - return quoted_printable_encode($string); + //return quoted_printable_encode($string); } $filters = stream_get_filters(); if (!in_array('convert.*', $filters)) { //Got convert stream filter?