diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-06-22 20:19:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-06-22 20:19:58 +0000 |
commit | 5c8843704c2b953d5fb790ca084c700ea685d252 (patch) | |
tree | 40b77faa12c9676695cd57bbd18c628d3db5bcce /index.php | |
parent | f3a9a99570b1e9d7a929ee4a2f6495b6b26335d2 (diff) | |
download | brdo-5c8843704c2b953d5fb790ca084c700ea685d252.tar.gz brdo-5c8843704c2b953d5fb790ca084c700ea685d252.tar.bz2 |
- Patch #18213 by chx: boostrap system. Modified to work with HEAD, tidied
up the documentation a little.
chx: can you double-check whether the global $conf variable is secure?
(That is, make sure it can't be send using the URL or something.)
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -9,12 +9,8 @@ * prints the appropriate page. */ -include_once 'includes/bootstrap.inc'; -drupal_page_header(); -include_once 'includes/common.inc'; - -fix_gpc_magic(); -fix_checkboxes(); +require_once './includes/bootstrap.inc'; +drupal_bootstrap('full'); $return = menu_execute_active_handler(); switch ($return) { |