Skip to content

Commit

Permalink
corrected incorrect line in examples module
Browse files Browse the repository at this point in the history
  • Loading branch information
emrysr committed Mar 19, 2019
1 parent cea0c46 commit c40ec3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
if ($embed == 1) {
print view($themeDir . "embed.php", $output);
} else {
$menu = load_menu();
$menu = function_exists('load_menu') ? load_menu(): array();
$output['mainmenu'] = view($themeDir . "menu_view.php", array());
print view($themeDir . "theme.php", $output);
}
Expand Down

0 comments on commit c40ec3d

Please sign in to comment.