From 7de29914a9cbb6d82e4d5798f46565322e41b021 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu>
Date: Tue, 8 Jan 2008 21:25:05 +0000
Subject: [PATCH] #207731 by Pancho: adding brackets to some default form
 values, for consistency

---
 modules/system/system.admin.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index a355a7fa724a..ee55185360e0 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'),
-- 
GitLab