Skip to content
Snippets Groups Projects
Commit 35a9fd1e authored by Kjartan Mannes's avatar Kjartan Mannes
Browse files

- specifying an invalid module will redirect you to the index page instead of

  showing a blank page.
parent 1fe8d6b1
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -3,10 +3,13 @@
include_once "includes/common.inc";
page_header();
module_invoke($mod, "page");
page_footer();
if (module_hook($mod, "page")) {
page_header();
module_invoke($mod, "page");
page_footer();
}
else {
header("Location: index.php");
}
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment