X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fphpmailer%2Fclass.smtp.php;h=be084a116e117b695b278ab460af49f3969763f6;hb=d2c972ef5f68c2f69865aa4f392841d166a419ae;hp=e7d4abda22fe94721ce029b0da5ae041327ac742;hpb=cdae9cf8caab7999de3eac214f190e102cddb0d2;p=mailer.git diff --git a/inc/phpmailer/class.smtp.php b/inc/phpmailer/class.smtp.php index e7d4abda22..be084a116e 100644 --- a/inc/phpmailer/class.smtp.php +++ b/inc/phpmailer/class.smtp.php @@ -2,7 +2,7 @@ /*~ class.smtp.php .---------------------------------------------------------------------------. | Software: PHPMailer - PHP email class | -| Version: 2.0.3 | +| Version: 2.0.4 | | Contact: via sourceforge.net support pages (also www.codeworxtech.com) | | Info: http://phpmailer.sourceforge.net | | Support: http://sourceforge.net/projects/phpmailer/ | @@ -1038,7 +1038,7 @@ class SMTP */ function get_lines() { $data = ""; - while($str == @fgets($this->smtp_conn,515)) { + while($str = @fgets($this->smtp_conn,515)) { if($this->do_debug >= 4) { echo "SMTP -> get_lines(): \$data was \"$data\"" . $this->CRLF;