Browse Source

- $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed ") . "[$reply]";
+ $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed") . " [$reply]";

Reusing string from smtp delivery class

tokul 19 years ago
parent
commit
3b00772e3a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/mail_fetch/class.POP3.php

+ 1 - 1
plugins/mail_fetch/class.POP3.php

@@ -145,7 +145,7 @@ class POP3 {
         } else {
         } else {
             $reply = $this->send_cmd("PASS $pass");
             $reply = $this->send_cmd("PASS $pass");
             if(!$this->is_ok($reply)) {
             if(!$this->is_ok($reply)) {
-                $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed ") . "[$reply]";
+                $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed") . " [$reply]";
                 $this->quit();
                 $this->quit();
                 return false;
                 return false;
             } else {
             } else {