summaryrefslogtreecommitdiff
path: root/modules/block.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/block.module')
-rw-r--r--modules/block.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block.module b/modules/block.module
index 5383f3ac4..406b0ef19 100644
--- a/modules/block.module
+++ b/modules/block.module
@@ -422,7 +422,7 @@ function block_list($region) {
if ($enabled && $matched) {
// Check the current throttle status and see if block should be displayed
// based on server load.
- if (!($block['throttle'] && (module_invoke('throttle', 'status') > 4))) {
+ if (!($block['throttle'] && (module_invoke('throttle', 'status') > 0))) {
$array = module_invoke($block['module'], 'block', 'view', $block['delta']);
if (is_array($array)) {
$block = array_merge($block, $array);