FIX preg_replace_callback in emailer was broken

Fixes bug introduced by 9deb11f9a0
Email has no content
This is what happens when we make commits without testing!
This commit is contained in:
Stephen Shkardoon 2013-07-15 16:50:41 +12:00
parent 920edf88e7
commit 999fd3901c

View File

@ -424,7 +424,7 @@ function encodeFileForEmail($file, $destFileName = false, $disposition = NULL, $
function QuotedPrintable_encode($quotprint) { function QuotedPrintable_encode($quotprint) {
$quotprint = (string)str_replace('\r\n',chr(13).chr(10),$quotprint); $quotprint = (string)str_replace('\r\n',chr(13).chr(10),$quotprint);
$quotprint = (string)str_replace('\n', chr(13).chr(10),$quotprint); $quotprint = (string)str_replace('\n', chr(13).chr(10),$quotprint);
$quotprint = (string)preg_replace_callback("~([\x01-\x1F\x3D\x7F-\xFF])~e", function($matches) { $quotprint = (string)preg_replace_callback("~([\x01-\x1F\x3D\x7F-\xFF])~", function($matches) {
return sprintf('=%02X', ord($matches[1])); return sprintf('=%02X', ord($matches[1]));
}, $quotprint); }, $quotprint);
//$quotprint = (string)str_replace('\=0D=0A',"=0D=0A",$quotprint); //$quotprint = (string)str_replace('\=0D=0A',"=0D=0A",$quotprint);