From 9a9cb55917acb7a5503e156f28c3d062521df3e6 Mon Sep 17 00:00:00 2001 From: cytopia Date: Sun, 5 Aug 2018 16:55:26 +0200 Subject: [PATCH] Fix PHP 7.2 deprecated function: create_function() --- .devilbox/www/include/vendor/Mail/mimeDecode.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.devilbox/www/include/vendor/Mail/mimeDecode.php b/.devilbox/www/include/vendor/Mail/mimeDecode.php index 60534c89..4e2d5b6c 100755 --- a/.devilbox/www/include/vendor/Mail/mimeDecode.php +++ b/.devilbox/www/include/vendor/Mail/mimeDecode.php @@ -832,10 +832,16 @@ class Mail_mimeDecode extends PEAR // Remove soft line breaks $input = preg_replace("/=\r?\n/", '', $input); - // Replace encoded characters - - $cb = create_function('$matches', ' return chr(hexdec($matches[0]));'); - + // cytopia edit + if (version_compare(PHP_VERSION, '7.2.0', '>=')) { + $cb = function($matches) { + return chr(hexdec($matches[0])); + }; + } else { + // Replace encoded characters + $cb = create_function('$matches', ' return chr(hexdec($matches[0]));'); + } + $input = preg_replace_callback( '/=([a-f0-9]{2})/i', $cb, $input); return $input;