summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-11-14 20:20:09 +0000
committerDries Buytaert <dries@buytaert.net>2004-11-14 20:20:09 +0000
commitef95773b1c6e3b2de1363e607d31f4e8808ec304 (patch)
treeacea17021fcb12bce0ff3e00b4af9000a79c6197 /modules/system
parent9998d2a14817b69251c1046b507c61eb3bacc750 (diff)
downloadbrdo-ef95773b1c6e3b2de1363e607d31f4e8808ec304.tar.gz
brdo-ef95773b1c6e3b2de1363e607d31f4e8808ec304.tar.bz2
- Modified patch by Jeremy: throttle module improvements and fixes:
+ throttle module: flush cache when the throttle enables/disables + throttle module: prevent throttle being enabled by 0 users or guests when disabled + system module: remove requirement for statistics.module + block module: update help text to reflect access log is no longer required + statistics module: throttle is now enabled/disabled, not using levels 0-5
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 556cdb2e2..de83f63c3 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -470,8 +470,7 @@ function system_module_listing() {
ksort($files);
$required = array('modules/admin.module', 'modules/block.module', 'modules/filter.module', 'modules/system.module', 'modules/user.module', 'modules/watchdog.module');
- // the throttle mechanism requires additional modules always be enabled
- $throttle_required = array_merge($required, array('modules/statistics.module', 'modules/throttle.module'));
+ $throttle_required = array_merge($required, array('modules/throttle.module'));
$header = array(t('Name'), t('Description'), t('Enabled'), t('Throttle'));