diff options
-rw-r--r-- | includes/install.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/install.inc b/includes/install.inc index 8902d3400..b17d563ea 100644 --- a/includes/install.inc +++ b/includes/install.inc @@ -554,6 +554,7 @@ function drupal_install_init_database() { foreach (glob(DRUPAL_ROOT . '/includes/database/' . $driver . '/*.inc') as $include_file) { require_once $include_file; } + $included = TRUE; } } @@ -573,7 +574,6 @@ function drupal_install_system() { $system_version = $system_versions ? max($system_versions) : SCHEMA_INSTALLED; db_query("INSERT INTO {system} (filename, name, type, owner, status, schema_version) VALUES('%s', '%s', '%s', '%s', %d, %d)", $system_path . '/system.module', 'system', 'module', '', 1, $system_version); // Now that we've installed things properly, bootstrap the full Drupal environment - drupal_install_init_database(); drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); module_rebuild_cache(); } |