From 939d8f7f54d02ff64becd0a86974c27572281b0a Mon Sep 17 00:00:00 2001 From: tokul Date: Wed, 23 Nov 2005 16:45:03 +0000 Subject: [PATCH] - $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed ") . "[$reply]"; + $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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mail_fetch/class.POP3.php b/plugins/mail_fetch/class.POP3.php index 1cc569e4..28daed7c 100644 --- a/plugins/mail_fetch/class.POP3.php +++ b/plugins/mail_fetch/class.POP3.php @@ -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 { -- 2.25.1