From 165e24a7ad3fe3918cc1cb6512e96800b431cb51 Mon Sep 17 00:00:00 2001 From: fidian Date: Thu, 16 Nov 2000 16:08:49 +0000 Subject: [PATCH] Changed an if {} else if {} into if {} else {} (removed unnecessary if) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@851 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/imap_general.php b/functions/imap_general.php index 784a75d2..46e05b51 100755 --- a/functions/imap_general.php +++ b/functions/imap_general.php @@ -100,7 +100,7 @@ echo htmlspecialchars($line) . "
\n"; } exit; - } else if ($response == "NO") { + } else { // If the user does not log in with the correct // username and password it is not possible to get the // correct locale from the user's preferences. -- 2.25.1