summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-06-29 20:40:26 +0000
committerDries Buytaert <dries@buytaert.net>2006-06-29 20:40:26 +0000
commit13c32bab15ecead0c9bc71f323496a44f8cd303d (patch)
tree92aef958fbe93cea5b6ba14edbe106612bd89773 /includes
parentd4af9c14e5dc2f39001b9b2b6dd7ac4c49390d68 (diff)
downloadbrdo-13c32bab15ecead0c9bc71f323496a44f8cd303d.tar.gz
brdo-13c32bab15ecead0c9bc71f323496a44f8cd303d.tar.bz2
- Patch #71454 by moshe: removed redundant module_invoke. Committing from the Google campus.
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 4c9e26d88..ab311ce08 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -916,7 +916,7 @@ function theme_closure($main = 0) {
function theme_blocks($region) {
$output = '';
- if ($list = module_invoke('block', 'list', $region)) {
+ if ($list = block_list($region)) {
foreach ($list as $key => $block) {
// $key == <i>module</i>_<i>delta</i>
$output .= theme('block', $block);