Zen Cart SMTP Issue

E-mail not working in Zencart or SMTP error page results.
In case you have others that have SMTP trouble, here is the particular bug fix we used, it has been fixed in the new releases but we are using 1.3.8 and had the problem:

This is what we did:
Inside Zen script;
/includes/classes/class.smtp.php on line 118

Is Now
//Added for Gmail support CER
if($this-Protocol != ‘’) $host = $this->Protocol . “://” . $host;

Add the > as shown:
Code:
//Added for Gmail support CER
if($this->Protocol != ‘’) $host = $this->Protocol . “://” . $host;