Add missing colon in maintenance.php.

This commit is contained in:
Retro_Guy 2024-10-14 02:42:25 -07:00
parent a942433de1
commit ea56e003e4
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ function create_section($section = false)
}
if (!$menuexists) {
echo "Adding menu entry to " . $config_dir . "menu.conf\n";
$newmenu[] = $section . "1:1\n";
$newmenu[] = $section . ":1:1\n";
$newmenu = implode($newmenu);
file_put_contents($config_dir . 'menu.conf', $newmenu);
}