Forked from
project / drupal
44189 commits behind, 102 commits ahead of the upstream repository.
-
The Great Git Migration authoredThe Great Git Migration authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
index.php 348 B
<?php
include_once "includes/common.inc";
page_header();
check_php_setting("magic_quotes_gpc", 0);
check_php_setting("register_globals", 1);
if (module_hook(variable_get("site_frontpage", "node"), "page")) {
module_invoke(variable_get("site_frontpage", "node"), "page");
}
else {
$theme->header();
$theme->footer();
}
page_footer();
?>