From 470b2e374e59abb186b2c806b1542ca0ebf0ad8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Sun, 9 Sep 2007 19:46:54 +0000 Subject: [PATCH] #172262 by JirkaRybka: better globals handling in install system, so the choosen profile and language are remembered --- includes/bootstrap.inc | 2 +- install.php | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index dc9cbfc0b18..02b30011444 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -257,7 +257,7 @@ function conf_path($require_settings = TRUE, $reset = FALSE) { */ function drupal_unset_globals() { if (ini_get('register_globals')) { - $allowed = array('_ENV' => 1, '_GET' => 1, '_POST' => 1, '_COOKIE' => 1, '_FILES' => 1, '_SERVER' => 1, '_REQUEST' => 1, 'access_check' => 1, 'GLOBALS' => 1); + $allowed = array('_ENV' => 1, '_GET' => 1, '_POST' => 1, '_COOKIE' => 1, '_FILES' => 1, '_SERVER' => 1, '_REQUEST' => 1, 'GLOBALS' => 1); foreach ($GLOBALS as $key => $value) { if (!isset($allowed[$key])) { unset($GLOBALS[$key]); diff --git a/install.php b/install.php index 2f07f0140db..2a254abcca3 100644 --- a/install.php +++ b/install.php @@ -15,10 +15,12 @@ require_once './includes/install.inc'; * The installation phase we should proceed to. */ function install_main() { - global $profile, $install_locale, $conf; require_once './includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION); + // This must go after drupal_bootstrap(), which unsets globals! + global $profile, $install_locale, $conf; + require_once './modules/system/system.install'; require_once './includes/file.inc';