summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2006-08-02 16:23:36 +0000
committersvncommit <devs@roundcube.net>2006-08-02 16:23:36 +0000
commit06417b8491dfcc83cc506fb035ec026edddf95d0 (patch)
treee15430ad9184cb5fbf1208875b3b1bc79f5aa72c
parent2c57622f0845490894946c4147d3d40cf8496310 (diff)
#1483918 - changed folder list such that the lists are no longer nested.
-rw-r--r--program/steps/mail/func.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index fd0d2c25d..000f561ad 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -218,7 +218,7 @@ function rcmail_render_folder_tree_html(&$arrFolders, &$special, &$mbox_name, $m
' onclick="return %s.command(\'list\',\'%s\')"'.
' onmouseover="return %s.focus_mailbox(\'%s\')"' .
' onmouseout="return %s.unfocus_mailbox(\'%s\')"' .
- ' onmouseup="return %s.mbox_mouse_up(\'%s\')"%s>%s</a>',
+ ' onmouseup="return %s.mbox_mouse_up(\'%s\')"%s>%s</a></li>',
$folder_css,
$class_name,
$zebra_class,
@@ -240,7 +240,7 @@ function rcmail_render_folder_tree_html(&$arrFolders, &$special, &$mbox_name, $m
if (!empty($folder['folders']))
$out .= "\n<ul>\n" . rcmail_render_folder_tree_html($folder['folders'], $special, $mbox_name, $maxlength, $nestLevel+1) . "</ul>\n";
- $out .= "</li>\n";
+ $out .= "\n";
$idx++;
}