Skip to content

Commit

Permalink
Remove trailing slash in URL
Browse files Browse the repository at this point in the history
Trailing slash in GitHub URLs is not needed, and for consistency with
PHPMailer logo which does not have the trailing slash
  • Loading branch information
fbonzon committed Sep 15, 2015
1 parent b41b259 commit 09c9eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class.phpmailer.php
Expand Up @@ -1844,7 +1844,7 @@ public function createHeader()
if ($this->XMailer == '') {
$result .= $this->headerLine(
'X-Mailer',
'PHPMailer ' . $this->Version . ' (https://github.com/PHPMailer/PHPMailer/)'
'PHPMailer ' . $this->Version . ' (https://github.com/PHPMailer/PHPMailer)'
);
} else {
$myXmailer = trim($this->XMailer);
Expand Down

0 comments on commit 09c9eba

Please sign in to comment.