Small html fix
[squirrelmail.git] / src / left_main.php
index b6b2c12bb735b68a7e24607d5c50f318c3ad50b6..b65d839332e077dcb4c2dec64d240b12ffb592d7 100644 (file)
@@ -44,18 +44,15 @@ function formatMailboxName($imapConnection, $box_array) {
         $mailbox = $regs[2];
     }
     $unseen = 0;
-    $status = array();
+    $status = array('','');
     if (($unseen_notify == 2 && $real_box == 'INBOX') ||
         $unseen_notify == 3) {
-       $status = create_unseen_string($real_box, $box_array, $imapConnection, $unseen_type );
+       $tmp_status = create_unseen_string($real_box, $box_array, $imapConnection, $unseen_type );
        if ($status !== false) {
-           list($unseen_string, $unseen) = $status;
-       } else {
-           list($unseen_string, $unseen) = array(_("Not available"),'');
-       }
-    } else {
-       list($unseen_string, $unseen) = array('','');
+           $status = $tmp_status;
+       } 
     }
+    list($unseen_string, $unseen) = $status;
     $special_color = ($use_special_folder_color && isSpecialMailbox($real_box));
 
     /* Start off with a blank line. */
@@ -290,7 +287,7 @@ function listBoxes ($boxes, $j=0 ) {
        $mailbox = $boxes->mailboxname_full;
        $leader = '';
        for ($k = 0; $k < $j; $k++) {
-           $leader.= '&nbsp&nbsp&nbsp';
+           $leader.= '&nbsp;&nbsp;&nbsp;';
        }
        $mailboxURL = urlencode($mailbox);
 
@@ -313,14 +310,14 @@ function listBoxes ($boxes, $j=0 ) {
 
            $link = '<a target="left" style="text-decoration:none" ' .'href="left_main.php?';
            if ($collapse) {
-               $link .= "unfold=$mailboxURL\">$leader +&nbsp";
+               $link .= "unfold=$mailboxURL\">$leader +&nbsp;";
            } else {
-               $link .= "fold=$mailboxURL\">$leader -&nbsp";
+               $link .= "fold=$mailboxURL\">$leader -&nbsp;";
            }
            $link .= '</a>';
            $pre .= $link;
        } else {
-           $pre.= $leader . '&nbsp&nbsp&nbsp';
+           $pre.= $leader . '&nbsp;&nbsp;&nbsp;';
        }