|
From: <pdo...@us...> - 2021-03-13 00:13:14
|
Revision: 14901
http://sourceforge.net/p/squirrelmail/code/14901
Author: pdontthink
Date: 2021-03-13 00:13:05 +0000 (Sat, 13 Mar 2021)
Log Message:
-----------
Remove stray curly brackets
Modified Paths:
--------------
branches/SM-1_4-STABLE/squirrelmail/class/deliver/Deliver_SMTP.class.php
Modified: branches/SM-1_4-STABLE/squirrelmail/class/deliver/Deliver_SMTP.class.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/class/deliver/Deliver_SMTP.class.php 2021-02-08 21:59:46 UTC (rev 14900)
+++ branches/SM-1_4-STABLE/squirrelmail/class/deliver/Deliver_SMTP.class.php 2021-03-13 00:13:05 UTC (rev 14901)
@@ -157,7 +157,7 @@
$tmp = $this->parse_ehlo_response($stream);
if ($this->errorCheck($tmp,$stream)) {
// fall back to HELO if EHLO is not supported (error 5xx)
- if ($this->dlv_ret_nr{0} == '5') {
+ if ($this->dlv_ret_nr[0] == '5') {
fputs($stream, "HELO $helohost\r\n");
$tmp = fgets($stream,1024);
if ($this->errorCheck($tmp,$stream)) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|