summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php
index 21ad8f755..cd7ee8d2a 100644
--- a/install.php
+++ b/install.php
@@ -584,7 +584,7 @@ function install_select_locale_form(&$form_state, $locales) {
$form['locale'][$locale->name] = array(
'#type' => 'radio',
'#return_value' => $locale->name,
- '#default_value' => ($locale->name == 'en' ? TRUE : FALSE),
+ '#default_value' => $locale->name == 'en',
'#title' => $name . ($locale->name == 'en' ? ' ' . st('(built-in)') : ''),
'#parents' => array('locale')
);
@@ -940,7 +940,7 @@ function install_check_requirements($profile, $verify) {
}
elseif ($writable) {
$requirements['settings file'] = array(
- 'title' => st('Settings file'),
+ 'title' => st('Settings file'),
'value' => st('Settings file is writable.'),
);
}