Skip to content

Commit

Permalink
Update class.phpmailer.php
Browse files Browse the repository at this point in the history
Fixed typo in DKIM_Add function.
  • Loading branch information
mrbellek committed Jun 10, 2013
1 parent 82cce95 commit 83bebcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class.phpmailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2888,7 +2888,7 @@ public function DKIM_Add($headers_line, $subject, $body) {
$current = 'to_header';
} else {
if($current && strpos($header, ' =?') === 0){
$$current .= $header;
$current .= $header;
} else {
$current = '';
}
Expand Down

0 comments on commit 83bebcc

Please sign in to comment.