Browse Source

Reintroduce the centering of the folderlist.

Thijs Kinkhorst 20 years ago
parent
commit
c8ecba74ff
1 changed files with 6 additions and 1 deletions
  1. 6 1
      src/left_main.php

+ 6 - 1
src/left_main.php

@@ -726,6 +726,9 @@ echo '<div style="white-space: nowrap;"><small>[<a href="../src/left_main.php" t
      _("Check mail") . "</a>]</small></div></center><br />\n\n";
 
 /* Lastly, display the folder list. */
+echo "<center><table><tr><td>\n";
+
+
 if ( $collapse_folders ) {
     /* If directed, collapse or uncollapse a folder. */
     if (isset($fold)) {
@@ -770,8 +773,10 @@ if (isset($advanced_tree) && $advanced_tree) {
     ListBoxes($boxes);
 }
 
+echo "</td></tr></table></center>\n";
+
 do_hook('left_main_after');
 sqimap_logout($imapConnection);
 
 ?>
-</body></html>
+</body></html>