From 3dffe83ff7a657794208f04e87e3ca7f6448d2cc Mon Sep 17 00:00:00 2001 From: alex-brainstorm Date: Sat, 12 Jul 2003 23:10:42 +0000 Subject: [PATCH] INBOX is not case-insensitive git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5268 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.php b/src/search.php index df792b3..b3ad104 100644 --- a/src/search.php +++ b/src/search.php @@ -26,7 +26,7 @@ function asearch_unhtml_strcoll($a, $b) function imap_get_mailbox_display($mailbox) { - if ($mailbox == 'INBOX') + if (strtoupper($mailbox) == 'INBOX') return _("INBOX"); return imap_utf7_decode_local($mailbox); } -- 1.9.1