From 45fc8f479f66cf4df6e73a70f899ef46e4b88754 Mon Sep 17 00:00:00 2001 From: tassium Date: Tue, 8 Jul 2003 15:13:43 +0000 Subject: [PATCH] When displaying the folder pane, treat Inbox as if it is selectable, ALWAYS. This should work around the problem with Cyrus and Inbox being unsubscribed. (What a mess) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5250 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/left_main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/left_main.php b/src/left_main.php index 71fb7028..f6165b9e 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -362,7 +362,7 @@ function listBoxes ($boxes, $j=0 ) { ""; } } else { - if (!$boxes->is_noselect) { + if (!$boxes->is_noselect || strtolower($boxes->mailboxname_full)=="inbox") { if ($unseen > 0) { $pre .= ''; } -- 2.25.1