summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index e04569161..dccb8cd22 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -134,7 +134,7 @@ function theme_blocks($region, &$theme) {
if (($block->status && (!$user->uid || !$block->custom)) || ($block->custom && $user->block[$block->name])) {
$blocks = module_invoke($block->module, "block");
if ($blocks[$block->delta]["content"]) {
- $theme->box(t($blocks[$block->delta]["subject"]), $blocks[$block->delta]["content"], $region);
+ $theme->box($blocks[$block->delta]["subject"], $blocks[$block->delta]["content"], $region);
}
}
}