From 56cfc0d5203340abbc75b3fca3efde9b56754487 Mon Sep 17 00:00:00 2001 From: revaxarts Date: Sat, 12 Jan 2013 16:08:32 +0100 Subject: [PATCH] Update class.phpmailer.php language string 'tls' is missing on line 1067. can use 'connect_host' instead --- class.phpmailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class.phpmailer.php b/class.phpmailer.php index 01b70b48..ae95c426 100644 --- a/class.phpmailer.php +++ b/class.phpmailer.php @@ -1064,7 +1064,7 @@ class PHPMailer { if ($tls) { if (!$this->smtp->StartTLS()) { - throw new phpmailerException($this->Lang('tls')); + throw new phpmailerException($this->Lang('connect_host')); } //We must resend HELO after tls negotiation