2001-03-10 11:07:52 +00:00
|
|
|
<?php
|
2001-10-20 18:57:09 +00:00
|
|
|
// $Id$
|
2000-05-18 19:51:59 +00:00
|
|
|
|
2003-11-18 19:44:36 +00:00
|
|
|
include_once "includes/bootstrap.inc";
|
|
|
|
drupal_page_header();
|
2001-02-04 22:09:38 +00:00
|
|
|
include_once "includes/common.inc";
|
2000-05-18 19:51:59 +00:00
|
|
|
|
2003-10-31 19:34:03 +00:00
|
|
|
fix_gpc_magic();
|
2003-09-28 10:51:40 +00:00
|
|
|
|
2003-11-08 09:56:22 +00:00
|
|
|
if (menu_active_handler_exists()) {
|
2003-11-20 21:51:23 +00:00
|
|
|
menu_execute_active_handler();
|
2002-04-14 19:34:04 +00:00
|
|
|
}
|
|
|
|
else {
|
2003-12-16 21:06:34 +00:00
|
|
|
drupal_not_found();
|
2003-01-06 19:51:01 +00:00
|
|
|
}
|
2001-11-01 11:00:51 +00:00
|
|
|
|
2003-08-12 15:57:16 +00:00
|
|
|
drupal_page_footer();
|
|
|
|
|
2000-05-19 11:20:58 +00:00
|
|
|
?>
|