#207731 by Pancho: adding brackets to some default form values, for consistency

6.x
Gábor Hojtsy 2008-01-08 21:25:05 +00:00
parent 9b1172f26f
commit 7de29914a9
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ function system_settings_overview() {
function system_admin_theme_settings() {
$themes = system_theme_data();
ksort($themes);
$options[0] = t('System default');
$options[0] = '<'. t('System default') .'>';
foreach ($themes as $theme) {
$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[0] = t('none');
$period[0] = '<'. t('none') .'>';
$form['page_cache']['cache_lifetime'] = array(
'#type' => 'select',
'#title' => t('Minimum cache lifetime'),