From ecad03f6204d222f546daef73df5a4a89d177ab6 Mon Sep 17 00:00:00 2001 From: Synchro Date: Sat, 12 Jan 2013 17:34:27 +0100 Subject: [PATCH] Coding style --- class.phpmailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class.phpmailer.php b/class.phpmailer.php index 2ae2fedb..7b9eb147 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); }