mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-08-23 06:34:00 +00:00
Mailstream: Fix code error
This commit is contained in:
parent
28fcccd9d5
commit
5172f2bd95
1 changed files with 2 additions and 2 deletions
|
@ -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 = '';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue