Skip to content
Snippets Groups Projects
  • Dries Buytaert's avatar
    670a2922
    · 670a2922
    Dries Buytaert authored
    - Reworked 404 (page not found) handling.  Patch by walkah.  You can specify a
      custom 404 page in the administration page.  As a result, error.php could be
      removed.
    670a2922
    History
    Dries Buytaert authored
    - Reworked 404 (page not found) handling.  Patch by walkah.  You can specify a
      custom 404 page in the administration page.  As a result, error.php could be
      removed.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
index.php 283 B
<?php
// $Id$

include_once "includes/bootstrap.inc";
drupal_page_header();
include_once "includes/common.inc";

fix_gpc_magic();

menu_build("system");

if (menu_active_handler_exists()) {
  menu_execute_active_handler();
}
else {
  drupal_not_found();
}

drupal_page_footer();

?>