diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-21 06:25:49 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-21 06:25:49 +0000 |
commit | e48ec0999390a7b6ab2f958fdbaca91ab2fb7fba (patch) | |
tree | 922d342dd79466edfec4d5f8e499bd83260ac11b /install.php | |
parent | 70179807c65530f5c4296d4499d060e4b6a9aa92 (diff) | |
download | brdo-e48ec0999390a7b6ab2f958fdbaca91ab2fb7fba.tar.gz brdo-e48ec0999390a7b6ab2f958fdbaca91ab2fb7fba.tar.bz2 |
#79511 by timcn. Clean up some notices.
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index 7c88eab34..46545edad 100644 --- a/install.php +++ b/install.php @@ -140,7 +140,7 @@ function install_change_settings() { if ($db_url == 'mysql://username:password@localhost/databasename') { $db_user = $db_pass = $db_path = ''; } - $output = drupal_get_form('install_settings_form', $profile, $settings_file, $db_url, $db_type, $db_prefix, $db_user, $db_pass, $db_host); + $output = drupal_get_form('install_settings_form', $profile, $settings_file, $db_url, $db_type, $db_prefix, $db_user, $db_pass, $db_host, $db_path); drupal_set_title('Database configuration'); print theme('install_page', $output); exit; @@ -150,7 +150,7 @@ function install_change_settings() { /** * Form API array definition for install_settings. */ -function install_settings_form($profile, $settings_file, $db_url, $db_type, $db_prefix, $db_user, $db_pass, $db_host) { +function install_settings_form($profile, $settings_file, $db_url, $db_type, $db_prefix, $db_user, $db_pass, $db_host, $db_path) { $db_types = drupal_detect_database_types(); if (count($db_types) == 0) { $form['no_db_types'] = array( |