- $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed...
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 23 Nov 2005 16:45:03 +0000 (16:45 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 23 Nov 2005 16:45:03 +0000 (16:45 +0000)
+                $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed") . " [$reply]";

Reusing string from smtp delivery class

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10399 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/mail_fetch/class.POP3.php

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