- Small index.php improvement. Modified patch from Bart Jansens.

4.3.x
Dries Buytaert 2003-08-12 15:57:16 +00:00
parent 17ef869e3a
commit ab6db28671
1 changed files with 7 additions and 7 deletions

View File

@ -3,24 +3,23 @@
include_once "includes/common.inc";
if (isset($_GET["q"])) {
if (!empty($_GET["q"])) {
if (module_exist("node") && $path = node_get_alias($_GET["q"])) {
$_GET["q"] = $path;
}
$mod = arg(0);
}
else {
$_GET["q"] = variable_get("site_frontpage", "node");
$mod = arg(0);
}
$mod = arg(0);
drupal_page_header();
if (isset($mod) && module_hook($mod, "page")) {
drupal_page_header();
module_invoke($mod, "page");
drupal_page_footer();
}
else {
drupal_page_header();
check_php_setting("magic_quotes_gpc", 0);
if (module_hook(variable_get("site_frontpage", "node"), "page")) {
@ -30,7 +29,8 @@ else {
theme("header");
theme("footer");
}
drupal_page_footer();
}
drupal_page_footer();
?>