summaryrefslogtreecommitdiff
path: root/includes/install.core.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-22 09:13:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-22 09:13:53 +0000
commita0f1bffdace3e74ee568b41ee21250f9b74443b2 (patch)
tree948cb0e846081aad39f33841c9aa215722950325 /includes/install.core.inc
parent5c52958521c70c90f6576a097855697a65d14f6f (diff)
downloadbrdo-a0f1bffdace3e74ee568b41ee21250f9b74443b2.tar.gz
brdo-a0f1bffdace3e74ee568b41ee21250f9b74443b2.tar.bz2
#776178 by marvil07: Fixed PHP 5.3 warning for command line install.
Diffstat (limited to 'includes/install.core.inc')
-rw-r--r--includes/install.core.inc4
1 files changed, 2 insertions, 2 deletions
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(