summaryrefslogtreecommitdiff
path: root/modules/block
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-04 06:38:57 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-04 06:38:57 +0000
commit17e6076807b20a38b2bed98ea4d0cde24ce57fb1 (patch)
tree5477f7516cdc457019cd7894f93c26f767c5a85f /modules/block
parent3abd531fba32ef7f4b994f6b11ff263c98dbe4c5 (diff)
downloadbrdo-17e6076807b20a38b2bed98ea4d0cde24ce57fb1.tar.gz
brdo-17e6076807b20a38b2bed98ea4d0cde24ce57fb1.tar.bz2
#433992 by David_Rothstein and Frando: Change #theme_wrapper to #theme_wrappers to allow multiple theme functions to execute on renderable objects.
Diffstat (limited to 'modules/block')
-rw-r--r--modules/block/block.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.module b/modules/block/block.module
index 2f139a614..306b7bcd7 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -275,7 +275,7 @@ function block_get_blocks_by_region($region) {
$build[$key] = $block->content;
unset($block->content);
$build[$key] += array(
- '#theme_wrapper' => 'block',
+ '#theme_wrappers' => array('block'),
'#block' => $block,
'#weight' => ++$weight,
);