summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/html.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/inc/html.php b/inc/html.php
index ea71df199..4f7ecc769 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -634,11 +634,14 @@ function html_index($ns){
}
$ns = utf8_encodeFN(str_replace(':','/',$ns));
- print p_locale_xhtml('index');
+ echo p_locale_xhtml('index');
+ echo '<div id="index__tree">';
$data = array();
search($data,$conf['datadir'],'search_index',array('ns' => $ns));
- print html_buildlist($data,'idx','html_list_index','html_li_index');
+ echo html_buildlist($data,'idx','html_list_index','html_li_index');
+
+ echo '</div>';
}
/**