diff -urp a/fusion_core/template.php b/fusion_core/template.php --- a/fusion_core/template.php 2014-04-15 12:27:19.000000000 -0400 +++ b/fusion_core/template.php 2014-04-15 15:55:16.000000000 -0400 @@ -402,10 +402,14 @@ function fusion_core_theme() { */ function fusion_core_block_list($region) { $drupal_list = array(); - if (module_exists('block')) { - $drupal_list = block_list($region); - } - if (module_exists('context') && $context = context_get_plugin('reaction', 'block')) { + if (module_exists('block')) { + $drupal_list=array(); + $list_of_blocks_per_region = _block_load_blocks(); + if (isset($list_of_blocks_per_region[$region])) { + $drupal_list = $list_of_blocks_per_region[$region]; + } + } + if (module_exists('context') && $context = context_get_plugin('reaction', 'block')) { $context_list = $context->block_list($region); $drupal_list = array_merge($context_list, $drupal_list); }