From 198cf882379f3c81ea687ca2de74ab342f61bc77 Mon Sep 17 00:00:00 2001 From: Yoshi Sakai Date: Sat, 12 Jan 2013 20:53:36 +0900 Subject: [PATCH] Change html tag
to ":" and "," --- class.phpmailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class.phpmailer.php b/class.phpmailer.php index d3222b00..d8811fba 100644 --- a/class.phpmailer.php +++ b/class.phpmailer.php @@ -965,7 +965,7 @@ class PHPMailer { } $smtp_from = ($this->Sender == '') ? $this->From : $this->Sender; if(!$this->smtp->Mail($smtp_from)) { - $this->SetError($this->Lang('from_failed') .$smtp_from . "
" .implode("
",$this->smtp->getError())) ; + $this->SetError($this->Lang('from_failed') .$smtp_from . " : " .implode(",",$this->smtp->getError())) ; throw new phpmailerException($this->ErrorInfo, self::STOP_CRITICAL); }