summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/inc/html.php b/inc/html.php
index b08f313e1..b9f2e957b 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -216,43 +216,6 @@ function html_btn($name,$id,$akey,$params,$method='get'){
}
/**
- * Print the table of contents
- *
- * @author Andreas Gohr <andi@splitbrain.org>
- */
-function html_toc($toc){
- global $lang;
- $ret = '';
- $ret .= '<div class="toc">';
- $ret .= '<div class="tocheader">';
- $ret .= $lang['toc'];
- $ret .= ' <script type="text/javascript">';
- $ret .= 'showTocToggle("+","-")';
- $ret .= '</script>';
- $ret .= '</div>';
- $ret .= '<div id="tocinside">';
- $ret .= html_buildlist($toc,'toc','html_list_toc');
- $ret .= '</div>';
- $ret .= '</div>';
- return $ret;
-}
-
-/**
- * TOC item formatter
- *
- * User function for html_buildlist()
- *
- * @author Andreas Gohr <andi@splitbrain.org>
- */
-function html_list_toc($item){
- $ret = '';
- $ret .= '<a href="#'.$item['id'].'" class="toc">';
- $ret .= $item['name'];
- $ret .= '</a>';
- return $ret;
-}
-
-/**
* show a wiki page
*
* @author Andreas Gohr <andi@splitbrain.org>