summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-01-08 21:25:05 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-01-08 21:25:05 +0000
commit7de29914a9cbb6d82e4d5798f46565322e41b021 (patch)
tree8b6d3174b2eb8f8ba87132762892ebe3f5d5425d /modules/system/system.admin.inc
parent9b1172f26f0ac40dee3ac21e619cf08126ff5ec9 (diff)
downloadbrdo-7de29914a9cbb6d82e4d5798f46565322e41b021.tar.gz
brdo-7de29914a9cbb6d82e4d5798f46565322e41b021.tar.bz2
#207731 by Pancho: adding brackets to some default form values, for consistency
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index a355a7fa7..ee5518536 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -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'),