Last small addition, use separate class for mailboxes with recent messages
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 11 Feb 2006 10:06:10 +0000 (10:06 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 11 Feb 2006 10:06:10 +0000 (10:06 +0000)
so you can detect where the recent messages are located if you use the
newmail plugin and only inform about recent messages.
At this moment the unseenstring is bold when the mailbox contains recent
messages.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10702 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/left_main.php

index 646d664fd5cdbb9ae93dc516eedb4db0528a65e9..222cd49d4521eb8b504b2a1e6098a8f837cfc023 100644 (file)
@@ -83,7 +83,11 @@ function ListBoxes ($boxes, $j=0 ) {
                 if (isset($unseen_type) && ($unseen_type == 2) && ($boxes->total !== false)) {
                     $unseen_string .= '/' . $boxes->total;
                 }
-                $unseen_string = "<span class=\"leftunseen\">($unseen_string)</span>";
+                if (isset($boxes->recent) && $boxes->recent) {
+                    $unseen_string = "<span class=\"leftrecent\">($unseen_string)</span>";
+                } else {
+                    $unseen_string = "<span class=\"leftunseen\">($unseen_string)</span>";
+                }
 
                 /*
                  * Finally allow the script to display the values by setting a boolean.
@@ -256,8 +260,11 @@ function ListAdvancedBoxes ($boxes, $mbx, $j='ID.0000' ) {
                     if (isset($unseen_type) && ($unseen_type == 2) && ($boxes->total !== false)) {
                         $unseen_string .= '/' . $boxes->total;
                     }
-
-                    $unseen_string = "<font color=\"$color[11]\">($unseen_string)</font>";
+                    if (isset($boxes->recent) && $boxes->recent > 0) {
+                        $unseen_string = "<span class=\"leftrecent\">($unseen_string)</span>";
+                    } else {
+                        $unseen_string = "<span class=\"leftunseen\">($unseen_string)</span>";
+                    }
 
                     /*
                      * Finally allow the script to display the values by setting a boolean.