From 345a8a92d0036bafe902f12dd7c2c00971ac0c04 Mon Sep 17 00:00:00 2001 From: thomppj Date: Thu, 6 Sep 2001 05:37:09 +0000 Subject: [PATCH] Fixed alignment problems between folders with and without subfolders... git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1489 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/left_main.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/left_main.php b/src/left_main.php index db51de27..d88bc15f 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -77,14 +77,14 @@ } if ($unseen > 0) - $line .= ""; + $line .= ' '; $line .= str_replace(' ', ' ', $spaces); if ($collapse_folders) { if (isset($box_array['parent'])) $line .= FoldLink($box_array['unformatted'], $box_array['parent']); else - $line .= '  '; + $line .= '   '; } $line .= ""; @@ -93,7 +93,7 @@ $line .= str_replace(' ',' ',$mailbox); if ($special_color == true) $line .= ""; - $line .= ""; + $line .= ''; if ($unseen > 0) $line .= ""; @@ -189,7 +189,7 @@ function FoldLink($mailbox, $folded) { $mailbox = urlencode($mailbox); - $link = '+"; -- 2.25.1