diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-06-20 18:52:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-06-20 18:52:32 +0000 |
commit | 3dbccfa7cfcf5c84e002c886c005b1327a8a31af (patch) | |
tree | 140ead7c676fa3988acf3681536a542cae7d0519 /includes/theme.inc | |
parent | d22493f926db224e071000af087f1c4604dfab8f (diff) | |
download | brdo-3dbccfa7cfcf5c84e002c886c005b1327a8a31af.tar.gz brdo-3dbccfa7cfcf5c84e002c886c005b1327a8a31af.tar.bz2 |
- Let the blocks itself take care of translating their titles. Patch by
Marco.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 2 |
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); } } } |