diff options
author | alecpl <alec@alec.pl> | 2009-07-06 09:13:10 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-07-06 09:13:10 +0000 |
commit | 2818f8e9ed5e8853e33636ac8efe09e2a4161618 (patch) | |
tree | 1bd0c3a4534704922c5ad80647a4334c28cc2082 /program/lib/Net | |
parent | 2f2bb4020b5d3a79a65177d54fe1b5ade1efb69d (diff) |
- Show SMTP errors in browser (#1485927)
Diffstat (limited to 'program/lib/Net')
-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 550383eef..1248a327b 100644 --- a/program/lib/Net/SMTP.php +++ b/program/lib/Net/SMTP.php @@ -856,7 +856,7 @@ class Net_SMTP if (isset($this->_esmtp['SIZE']) && ($this->_esmtp['SIZE'] > 0)) { if (strlen($data) >= $this->_esmtp['SIZE']) { $this->disconnect(); - return PEAR::raiseError('Message size excedes the server limit'); + return PEAR::raiseError('Message size exceedes the server limit'); } } |