From a0f1bffdace3e74ee568b41ee21250f9b74443b2 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Thu, 22 Apr 2010 09:13:53 +0000 Subject: #776178 by marvil07: Fixed PHP 5.3 warning for command line install. --- includes/install.core.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes') diff --git a/includes/install.core.inc b/includes/install.core.inc index 599eef540..97f9ba593 100644 --- a/includes/install.core.inc +++ b/includes/install.core.inc @@ -1392,7 +1392,7 @@ function install_import_locales(&$install_state) { * @return * The form API definition for the site configuration form. */ -function install_configure_form($form, &$form_state, &$install_state) { +function install_configure_form($form, &$form_state, $install_state) { if (variable_get('site_name', FALSE) || variable_get('site_mail', FALSE)) { // Site already configured: This should never happen, means re-running the // installer, possibly by an attacker after the 'install_task' variable got @@ -1583,7 +1583,7 @@ function install_check_requirements($install_state) { /** * Forms API array definition for site configuration. */ -function _install_configure_form($form, &$form_state, &$install_state) { +function _install_configure_form($form, &$form_state, $install_state) { include_once DRUPAL_ROOT . '/includes/locale.inc'; $form['site_information'] = array( -- cgit v1.2.3