diff options
| author | cmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-08-02 16:23:36 +0000 |
|---|---|---|
| committer | cmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-08-02 16:23:36 +0000 |
| commit | 3b6fad89188f361f5ef6be2352771fb13394ba2d (patch) | |
| tree | fca0fdf7bd4ffecbd134c7a94a1d780b2c11de0b /roundcubemail/program/steps | |
| parent | 8a49a89c6b5efe4e266533c04f188b0ba2f091d8 (diff) | |
#1483918 - changed folder list such that the lists are no longer nested.
git-svn-id: https://svn.roundcube.net/trunk@290 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
| -rw-r--r-- | roundcubemail/program/steps/mail/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc index fd0d2c25d..000f561ad 100644 --- a/roundcubemail/program/steps/mail/func.inc +++ b/roundcubemail/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++; } |
