diff options
author | alecpl <alec@alec.pl> | 2008-12-18 18:22:25 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-12-18 18:22:25 +0000 |
commit | b751d5609f915aaafde78782c15cd91af71af69e (patch) | |
tree | 8e374f0f3568af8083f0a23cf4c95795161504bc /program/lib/Net/SMTP.php | |
parent | 07717db7530ac180c88cedc4aeca3de85cde75dd (diff) |
#1485157: fix DIGEST-MD5 authentication
Diffstat (limited to 'program/lib/Net/SMTP.php')
-rw-r--r-- | program/lib/Net/SMTP.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Net/SMTP.php b/program/lib/Net/SMTP.php index a116b3bae..6e1bb0330 100644 --- a/program/lib/Net/SMTP.php +++ b/program/lib/Net/SMTP.php @@ -532,7 +532,7 @@ class Net_SMTP /* We don't use the protocol's third step because SMTP doesn't * allow subsequent authentication, so we just silently ignore * it. */ - if (PEAR::isError($error = $this->_put(' '))) { + if (PEAR::isError($error = $this->_put(''))) { return $error; } /* 235: Authentication successful */ |