summaryrefslogtreecommitdiff
path: root/includes/install.core.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-07 03:26:41 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-07 03:26:41 +0000
commit00ea494765e4a2d628c6077c3e727c5f47cf986e (patch)
treee12f4a61f38a3b11919592954d77a9c79488429a /includes/install.core.inc
parent65b99dc85fde083cca0938634bb15c4e1779c50d (diff)
downloadbrdo-00ea494765e4a2d628c6077c3e727c5f47cf986e.tar.gz
brdo-00ea494765e4a2d628c6077c3e727c5f47cf986e.tar.bz2
#934110 by dww: Fixed regression: Installer defaults to country 'Afghanistan', not 'None'.
Diffstat (limited to 'includes/install.core.inc')
-rw-r--r--includes/install.core.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/install.core.inc b/includes/install.core.inc
index fcf8812e1..f162bebce 100644
--- a/includes/install.core.inc
+++ b/includes/install.core.inc
@@ -1759,6 +1759,7 @@ function _install_configure_form($form, &$form_state, &$install_state) {
$form['server_settings']['site_default_country'] = array(
'#type' => 'select',
'#title' => t('Default country'),
+ '#empty_value' => '',
'#default_value' => variable_get('site_default_country', NULL),
'#options' => $countries,
'#description' => st('Select the default country for the site.'),