From 270fa5d8c98d535b0602c79202afd02fc232dbfa Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Tue, 24 Sep 2019 22:52:33 +0200
Subject: [PATCH] PHP 7.4 compatibility: patch PHPMailer
---
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
|
b
|
class PHPMailer |
2712 | 2712 | if (!self::isPermittedPath($path) or !file_exists($path)) { |
2713 | 2713 | throw new phpmailerException($this->lang('file_open') . $path, self::STOP_CONTINUE); |
2714 | 2714 | } |
2715 | | $magic_quotes = get_magic_quotes_runtime(); |
| 2715 | $magic_quotes = ( PHP_VERSION_ID < 70400 && get_magic_quotes_runtime() ); // WP: Patched for PHP 7.4. |
2716 | 2716 | if ($magic_quotes) { |
2717 | 2717 | if (version_compare(PHP_VERSION, '5.3.0', '<')) { |
2718 | 2718 | set_magic_quotes_runtime(false); |