From 0522602eef28403d5fc73090621939834250cf9a Mon Sep 17 00:00:00 2001 From: indiri69 Date: Mon, 27 Feb 2006 19:14:52 +0000 Subject: [PATCH] If Unseen and Total is selected in Folder Preference, display the message counts regardless of how many unseen messages there are. This restores the old behavior of showing (0/15) after a folder name. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10841 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- templates/default/left_main.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/default/left_main.tpl b/templates/default/left_main.tpl index 4d79624b..f4f01d37 100644 --- a/templates/default/left_main.tpl +++ b/templates/default/left_main.tpl @@ -103,7 +103,7 @@ function buildMailboxTree ($box, $settings, $indent_factor=0) { $box['CummulativeUnreadCount'] : $box['UnreadCount']; - if ($unseen > 0) { + if ($unseen > 0 || $settings['unreadNotificationDisplayTotal']) { $unseen_str = $unseen; // Add the total messages if desired -- 2.25.1