diff options
Diffstat (limited to 'modules/block/block.module')
-rw-r--r-- | modules/block/block.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/block/block.module b/modules/block/block.module index c8b9b599d..07718dc1d 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -221,7 +221,7 @@ function block_admin_display($theme = NULL) { $blocks = _block_rehash(); usort($blocks, '_block_compare'); - $throttle = module_exist('throttle'); + $throttle = module_exists('throttle'); $block_regions = system_region_list($theme_key); // Build form tree @@ -295,7 +295,7 @@ function block_admin_display_submit($form_id, $form_values) { function theme_block_admin_display($form) { global $theme_key; - $throttle = module_exist('throttle'); + $throttle = module_exists('throttle'); $block_regions = system_region_list($theme_key); // Highlight regions on page to provide visual reference. |