Skip to content

Commit

Permalink
Merge pull request PHPMailer#70 from mrbellek/master
Browse files Browse the repository at this point in the history
Fixed typo in DKIM_Add function.
  • Loading branch information
Synchro committed Jun 10, 2013
2 parents 82cce95 + 83bebcc commit 9831bcd
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 9831bcd

Please sign in to comment.