diff options
author | alecpl <alec@alec.pl> | 2012-04-14 11:15:28 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-04-14 11:15:28 +0000 |
commit | 1495ac7913095ae8284c3501b7d4e6dd31a484ec (patch) | |
tree | caef2733925b023bad686c44dbdfe886090f2881 /program/include/rcube_ui.php | |
parent | 9870dac30de1b8d1bdeab57af3eeb7c89b21ef76 (diff) |
- More public methods, code cleanup
Diffstat (limited to 'program/include/rcube_ui.php')
-rw-r--r-- | program/include/rcube_ui.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_ui.php b/program/include/rcube_ui.php index 96d686a7b..833a1dfde 100644 --- a/program/include/rcube_ui.php +++ b/program/include/rcube_ui.php @@ -829,7 +829,7 @@ class rcube_ui /** * Return html for a structured list <ul> for the mailbox tree */ - private static function render_folder_tree_html(&$arrFolders, &$mbox_name, &$jslist, $attrib, $nestLevel = 0) + public static function render_folder_tree_html(&$arrFolders, &$mbox_name, &$jslist, $attrib, $nestLevel = 0) { global $RCMAIL; @@ -922,7 +922,7 @@ class rcube_ui /** * Return html for a flat list <select> for the mailbox tree */ - private static function render_folder_tree_select(&$arrFolders, &$mbox_name, $maxlength, &$select, $realnames = false, $nestLevel = 0, $opts = array()) + public static function render_folder_tree_select(&$arrFolders, &$mbox_name, $maxlength, &$select, $realnames = false, $nestLevel = 0, $opts = array()) { global $RCMAIL; |