Merge pull request #6548 from MrPetovan/bug/frio-fix-help-toc

[frio] Fix help TOC display
This commit is contained in:
Tobias Diekershoff 2019-01-29 16:50:09 +01:00 committed by GitHub
commit d0727e33d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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