projects
/
squirrelmail.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
INBOX is not case-insensitive
[squirrelmail.git]
/
src
/
search.php
diff --git
a/src/search.php
b/src/search.php
index
df792b3
..
b3ad104
100644
(file)
--- 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);
}