diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-06-29 20:40:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-06-29 20:40:26 +0000 |
commit | 13c32bab15ecead0c9bc71f323496a44f8cd303d (patch) | |
tree | 92aef958fbe93cea5b6ba14edbe106612bd89773 /includes | |
parent | d4af9c14e5dc2f39001b9b2b6dd7ac4c49390d68 (diff) | |
download | brdo-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.inc | 2 |
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); |