diff options
author | Dennis1993 <marvin-wegener@outlook.com> | 2013-07-26 13:32:40 +0200 |
---|---|---|
committer | Dennis1993 <marvin-wegener@outlook.com> | 2013-07-26 13:32:40 +0200 |
commit | e34e0fd2fa4806a06d92eef1b281f38242a9868a (patch) | |
tree | 6ba136c25e13fb07a974f9b86a4930d599df6ec6 /program | |
parent | 5821a31351fcaedd8e46d6b17c67f33cea9f6c24 (diff) |
Update SMTP.php
remove sensless version_compare(). Min PHP Version is 5.2.1 so is a check of PHP 5.1.0 sensless. So never occurs.
Diffstat (limited to 'program')
-rw-r--r-- | program/lib/Net/SMTP.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/program/lib/Net/SMTP.php b/program/lib/Net/SMTP.php index 2c1ef5c55..02575955b 100644 --- a/program/lib/Net/SMTP.php +++ b/program/lib/Net/SMTP.php @@ -595,8 +595,7 @@ class Net_SMTP * extension, are connected to an SMTP server which supports the * STARTTLS extension, and aren't already connected over a secure * (SSL) socket connection. */ - if ($tls && version_compare(PHP_VERSION, '5.1.0', '>=') && - extension_loaded('openssl') && isset($this->_esmtp['STARTTLS']) && + if ($tls && extension_loaded('openssl') && isset($this->_esmtp['STARTTLS']) && strncasecmp($this->host, 'ssl://', 6) !== 0) { /* Start the TLS connection attempt. */ if (PEAR::isError($result = $this->_put('STARTTLS'))) { |