]> git.mxchange.org Git - friendica.git/blobdiff - mod/help.php
Merge pull request #2986 from annando/1612-spool
[friendica.git] / mod / help.php
index 320e622fa51c06674787d54e7c4d3513f8b9467e..72225692793d5206d412d9e2a671f63ded4ab762 100644 (file)
@@ -18,7 +18,6 @@ if (!function_exists('load_doc_file')) {
 
 }
 
-if(! function_exists('help_content')) {
 function help_content(&$a) {
 
        nav_set_selected('help');
@@ -63,7 +62,7 @@ function help_content(&$a) {
        if ($filename !== "Home") {
                // create TOC but not for home
                $lines = explode("\n", $html);
-               $toc="<style>aside ul {padding-left: 1em;}</style><h2>TOC</h2><ul id='toc'>";
+               $toc="<style>aside ul {padding-left: 1em;}aside h1{font-size:2em}</style><h2>TOC</h2><ul id='toc'>";
                $lastlevel=1;
                $idnum = array(0,0,0,0,0,0,0);
                foreach($lines as &$line){
@@ -85,7 +84,7 @@ function help_content(&$a) {
                                }
                        }
                }
-               for($k=1;$k<$lastlevel; $k++) $toc.="</ul>";
+               for($k=0;$k<$lastlevel; $k++) $toc.="</ul>";
                $html = implode("\n",$lines);
 
                $a->page['aside'] = $toc.$a->page['aside'];
@@ -99,5 +98,5 @@ function help_content(&$a) {
                }
                </style>".$html;
        return $html;
-}
+
 }