mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #2229 from ss23/patch-6
FIX preg_replace_callback in emailer was broken
This commit is contained in:
commit
d9b0d14ee9
@ -424,7 +424,7 @@ function encodeFileForEmail($file, $destFileName = false, $disposition = NULL, $
|
||||
function QuotedPrintable_encode($quotprint) {
|
||||
$quotprint = (string)str_replace('\r\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]));
|
||||
}, $quotprint);
|
||||
//$quotprint = (string)str_replace('\=0D=0A',"=0D=0A",$quotprint);
|
||||
|
Loading…
Reference in New Issue
Block a user