Ignore:
Timestamp:
Jun 21, 2007 1:28:44 PM (6 years ago)
Author:
till
Message:

# bugfix: changed generation of folder list to avoid messy css and mouseovers on nested folders

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/devel-vnext/program/steps/mail/func.inc

    r623 r625  
    291291                    $js_name, 
    292292                    $title, 
    293                     rc_main::Q($foldername)); 
    294  
     293                    rc_main::Q($foldername) 
     294        ); 
     295        /** 
     296         * Close <li> Element. 
     297         */ 
     298        $out .= "</li>\n"; 
     299 
     300        /** 
     301         * Append a new list if it has subfolders. 
     302         */ 
    295303        if (!empty($folder['folders'])) { 
    296304            $out .= "\n<ul>\n"; 
    297305            $out .= rcmail_render_folder_tree_html($folder['folders'], $special, $mbox_name, $maxlength, $nestLevel+1) . "</ul>\n"; 
    298306        } 
    299         $out .= "</li>\n"; 
     307 
    300308        $idx++; 
    301309    } 
Note: See TracChangeset for help on using the changeset viewer.