mirror of
https://github.com/YGGverse/bdoku.git
synced 2026-03-31 09:45:31 +00:00
fix var name
This commit is contained in:
parent
c6b174c696
commit
d9b2e24a99
1 changed files with 4 additions and 4 deletions
|
|
@ -384,14 +384,14 @@ $server->setHandler(
|
|||
if ($sections = $helper->getChildrenSectionLinksByUri($uri))
|
||||
{
|
||||
// Append header
|
||||
$lines[] = null;
|
||||
$menu[] = null;
|
||||
$menu[] = sprintf(
|
||||
'### %s',
|
||||
$config->string->sections
|
||||
);
|
||||
|
||||
// Append sections
|
||||
$lines[] = null;
|
||||
$menu[] = null;
|
||||
foreach ($sections as $section)
|
||||
{
|
||||
$menu[] = $section;
|
||||
|
|
@ -402,14 +402,14 @@ $server->setHandler(
|
|||
if ($pages = $helper->getChildrenPageLinksByUri($uri))
|
||||
{
|
||||
// Append header
|
||||
$lines[] = null;
|
||||
$menu[] = null;
|
||||
$menu[] = sprintf(
|
||||
'### %s',
|
||||
$config->string->pages
|
||||
);
|
||||
|
||||
// Append pages
|
||||
$lines[] = null;
|
||||
$menu[] = null;
|
||||
foreach ($pages as $page)
|
||||
{
|
||||
$menu[] = $page;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue