From f13714d9d1a2fca9f470edec798792e7d8181551 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Thu, 3 Oct 2019 15:44:36 +0000 Subject: [PATCH] General: Patch PHMailer for PHP 7.4 compatibility. This patches the PHPMailer library in Core to be PHP 7.4 compatible by adding a version check before calling `get_magic_quotes_runtime()`. Props ayeshrajans, jrf. See #47783. git-svn-id: https://develop.svn.wordpress.org/trunk@46378 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-phpmailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-phpmailer.php b/src/wp-includes/class-phpmailer.php index 8772db2842..7aaa850532 100644 --- a/src/wp-includes/class-phpmailer.php +++ b/src/wp-includes/class-phpmailer.php @@ -2712,7 +2712,7 @@ class PHPMailer if (!self::isPermittedPath($path) or !file_exists($path)) { throw new phpmailerException($this->lang('file_open') . $path, self::STOP_CONTINUE); } - $magic_quotes = get_magic_quotes_runtime(); + $magic_quotes = ( PHP_VERSION_ID < 70400 && get_magic_quotes_runtime() ); // WP: Patched for PHP 7.4. if ($magic_quotes) { if (version_compare(PHP_VERSION, '5.3.0', '<')) { set_magic_quotes_runtime(false);