summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
commitb5bf8a8f476fe4214478fec9250e651164b0e76f (patch)
tree434eb5771bd9238d426be6c19d9c30730af1ab3e /modules/system/system.module
parentfb70944dc92345e3f62c5ff810c805ffdeacd4bb (diff)
downloadbrdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.gz
brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.bz2
#97824 by Gurpartap. Move enclosing elements outside of their t().
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 86fc004bc..ab334ee9d 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -491,7 +491,7 @@ function system_theme_select_form($description = '', $default_value = '', $weigh
$screenshot = file_exists($info->screenshot) ? theme('image', $info->screenshot, t('Screenshot for %theme theme', array('%theme' => $info->name)), '', array('class' => 'screenshot'), FALSE) : t('no screenshot');
$form['themes'][$info->key]['screenshot'] = array('#value' => $screenshot);
- $form['themes'][$info->key]['description'] = array('#type' => 'item', '#title' => $info->name, '#value' => dirname($info->filename) . ($info->name == variable_get('theme_default', 'garland') ? t('<br /> <em>(site default theme)</em>') : ''));
+ $form['themes'][$info->key]['description'] = array('#type' => 'item', '#title' => $info->name, '#value' => dirname($info->filename) . ($info->name == variable_get('theme_default', 'garland') ? '<br /> <em>'. t('(site default theme)') .'</em>' : ''));
$options[$info->key] = '';
}