From 2059333c09d931ca5eba3a6081698c6854e749d3 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 30 Dec 2006 09:06:22 +0000 Subject: - Patch #102599 by ChrisKennedy: fixed rare 'call to undefined function' in the installer. --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 6d80892c7..b461cb014 100644 --- a/install.php +++ b/install.php @@ -19,6 +19,7 @@ function install_main() { require_once './includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION); require_once './modules/system/system.install'; + require_once './includes/file.inc'; // Check existing settings.php. $verify = install_verify_settings(); @@ -377,7 +378,6 @@ function install_settings_form_submit($form_id, $form_values) { * The selected profile. */ function install_select_profile() { - include_once './includes/file.inc'; include_once './includes/form.inc'; $profiles = file_scan_directory('./profiles', '\.profile$', array('.', '..', 'CVS'), 0, TRUE, 'name', 0); -- cgit v1.2.3