diff --git a/includes/theme.inc b/includes/theme.inc index e0456916114..dccb8cd2269 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); } } }