瀏覽代碼

don't STATUS a mailbox that isn't selectable

robsiemb 23 年之前
父節點
當前提交
afb51c2333
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      functions/imap_mailbox.php

+ 3 - 1
functions/imap_mailbox.php

@@ -795,7 +795,9 @@ function sqimap_mailbox_tree($imap_stream) {
 	    if (($unseen_notify == 2 && $mbx == 'INBOX') 
 		|| $unseen_notify == 3 
 		|| ($move_to_trash && ($mbx == $trash_folder))) {
-    		$sorted_lsub_ary[$i]['unseen'] = sqimap_unseen_messages($imap_stream, $mbx);
+    		$sorted_lsub_ary[$i]['unseen'] = 
+			$sorted_lsub_ary[$i]['noselect'] ?
+			    0 : sqimap_unseen_messages($imap_stream, $mbx);
 		if ($unseen_type == 2 || ($move_to_trash 
 		    && ($mbx == $trash_folder) )) {
         	    $sorted_lsub_ary[$i]['nummessages'] = sqimap_get_num_messages($imap_stream, $mbx);