#207731 by Pancho: adding brackets to some default form values, for consistency
parent
9b1172f26f
commit
7de29914a9
|
@ -153,7 +153,7 @@ function system_settings_overview() {
|
||||||
function system_admin_theme_settings() {
|
function system_admin_theme_settings() {
|
||||||
$themes = system_theme_data();
|
$themes = system_theme_data();
|
||||||
ksort($themes);
|
ksort($themes);
|
||||||
$options[0] = t('System default');
|
$options[0] = '<'. t('System default') .'>';
|
||||||
foreach ($themes as $theme) {
|
foreach ($themes as $theme) {
|
||||||
$options[$theme->name] = $theme->info['name'];
|
$options[$theme->name] = $theme->info['name'];
|
||||||
}
|
}
|
||||||
|
@ -1283,7 +1283,7 @@ function system_performance_settings() {
|
||||||
);
|
);
|
||||||
|
|
||||||
$period = drupal_map_assoc(array(0, 60, 180, 300, 600, 900, 1800, 2700, 3600, 10800, 21600, 32400, 43200, 86400), 'format_interval');
|
$period = drupal_map_assoc(array(0, 60, 180, 300, 600, 900, 1800, 2700, 3600, 10800, 21600, 32400, 43200, 86400), 'format_interval');
|
||||||
$period[0] = t('none');
|
$period[0] = '<'. t('none') .'>';
|
||||||
$form['page_cache']['cache_lifetime'] = array(
|
$form['page_cache']['cache_lifetime'] = array(
|
||||||
'#type' => 'select',
|
'#type' => 'select',
|
||||||
'#title' => t('Minimum cache lifetime'),
|
'#title' => t('Minimum cache lifetime'),
|
||||||
|
|
Loading…
Reference in New Issue