From 5172f2bd95f045aa633ecbf67c7b95d5e3cda37b Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 20 Aug 2025 16:14:01 +0000 Subject: [PATCH] Mailstream: Fix code error --- mailstream/phpmailer/class.phpmailer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailstream/phpmailer/class.phpmailer.php b/mailstream/phpmailer/class.phpmailer.php index 8cd05a2c..baf6c5ba 100644 --- a/mailstream/phpmailer/class.phpmailer.php +++ b/mailstream/phpmailer/class.phpmailer.php @@ -3874,8 +3874,8 @@ class PHPMailer $date_header = $header; $current = 'date_header'; } else { - if (!empty($$current) && strpos($header, ' =?') === 0) { - $$current .= $header; + if (!empty($current) && strpos($header, ' =?') === 0) { + $current .= $header; } else { $current = ''; }