summaryrefslogtreecommitdiff
path: root/includes/module.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/module.inc')
-rw-r--r--includes/module.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/module.inc b/includes/module.inc
index 543c51057..e4ac60dda 100644
--- a/includes/module.inc
+++ b/includes/module.inc
@@ -59,7 +59,7 @@ function module_list($refresh = FALSE, $bootstrap = FALSE) {
// Determine the current throttle status and see if the module should be
// loaded based on server load. We have to directly access the throttle
// variables, since throttle.module may not be loaded yet.
- $throttle = ($module->throttle && variable_get('throttle_level', 0) > 4);
+ $throttle = ($module->throttle && variable_get('throttle_level', 0) > 0);
if (!$throttle) {
$list[$module->name] = $module->name;
module_set_filename($module->name, $module->filename);