Update class.phpmailer.php

Fixed typo in DKIM_Add function.
This commit is contained in:
Merijn 2013-06-10 09:51:58 +02:00
parent 82cce95c28
commit 83bebcc1ff
1 changed files with 1 additions and 1 deletions

View File

@ -2888,7 +2888,7 @@ class PHPMailer {
$current = 'to_header';
} else {
if($current && strpos($header, ' =?') === 0){
$$current .= $header;
$current .= $header;
} else {
$current = '';
}