drupal/index.php

22 lines
283 B
PHP

<?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();
?>