diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-07-06 09:13:10 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-07-06 09:13:10 +0000 |
| commit | 52ae1365a83894952573e58b9af4afb6008c23c2 (patch) | |
| tree | c068d3d7e74fcb56c31f4e90037a4da18a9a9779 /roundcubemail/program/lib/Net/SMTP.php | |
| parent | 80e9c7569e763991640fbf169dab7e05a729da9a (diff) | |
- Show SMTP errors in browser (#1485927)
git-svn-id: https://svn.roundcube.net/trunk@2713 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/Net/SMTP.php')
| -rw-r--r-- | roundcubemail/program/lib/Net/SMTP.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/Net/SMTP.php b/roundcubemail/program/lib/Net/SMTP.php index 550383eef..1248a327b 100644 --- a/roundcubemail/program/lib/Net/SMTP.php +++ b/roundcubemail/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'); } } |
