Просмотр исходного кода

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)

tassium 22 лет назад
Родитель
Сommit
5542958d7c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/left_main.php

+ 1 - 1
src/left_main.php

@@ -362,7 +362,7 @@ function listBoxes ($boxes, $j=0 ) {
                         "</small>";
             }
         } else {
-            if (!$boxes->is_noselect) {
+            if (!$boxes->is_noselect || strtolower($boxes->mailboxname_full)=="inbox") {
                 if ($unseen > 0) {
                     $pre .= '<b>';
                 }