[frio] Fix help TOC display

This commit is contained in:
Hypolite Petovan 2019-01-29 08:51:02 -05:00
parent 8d84f33f15
commit e6dccc42e4
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ function help_content(App $a)
$level = intval($level);
if ($level < $lastlevel) {
for ($k = $level; $k < $lastlevel; $k++) {
$toc .= "</ul>";
$toc .= "</ul></li>";
}
for ($k = $level + 1; $k < count($idnum); $k++) {
@ -93,7 +93,7 @@ function help_content(App $a)
}
if ($level > $lastlevel) {
$toc .= "<ul>";
$toc .= "<li><ul>";
}
$idnum[$level] ++;