summaryrefslogtreecommitdiff
path: root/modules/throttle
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-08-31 20:22:37 +0000
committerDries Buytaert <dries@buytaert.net>2006-08-31 20:22:37 +0000
commitc64db1da29a6b2067f09e66e5e85e8877b489cb0 (patch)
treed4f837bbb16e60d4fdd30a5974fd3aca066527e3 /modules/throttle
parentcdd120ed20922a3130f108ff60b47a4f2130c44d (diff)
downloadbrdo-c64db1da29a6b2067f09e66e5e85e8877b489cb0.tar.gz
brdo-c64db1da29a6b2067f09e66e5e85e8877b489cb0.tar.bz2
- Patch #80952 by earl, webchick, neclimdul et al: .info files
Diffstat (limited to 'modules/throttle')
-rw-r--r--modules/throttle/throttle.info4
-rw-r--r--modules/throttle/throttle.module2
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/throttle/throttle.info b/modules/throttle/throttle.info
new file mode 100644
index 000000000..447f17afe
--- /dev/null
+++ b/modules/throttle/throttle.info
@@ -0,0 +1,4 @@
+; $Id$
+name = Throttle
+description = Handles the auto-throttling mechanism, to control site congestion.
+
diff --git a/modules/throttle/throttle.module b/modules/throttle/throttle.module
index de21c1497..9f80af747 100644
--- a/modules/throttle/throttle.module
+++ b/modules/throttle/throttle.module
@@ -133,8 +133,6 @@ function throttle_help($section) {
', array('@admin-modules' => url('admin/settings/modules'), '@admin-block' => url('admin/build/block'), '@admin-settings-throttle' => url('admin/settings/throttle')));
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@throttle">Throttle page</a>.', array('@throttle' => 'http://drupal.org/handbook/modules/throttle/')) .'</p>';
return $output;
- case 'admin/settings/modules#description':
- return t('Handles the auto-throttling mechanism, to control site congestion.');
case 'admin/settings/throttle':
return t('If your site gets linked to by a popular website, or otherwise comes under a "Denial of Service" (DoS) attack, your webserver might become overwhelmed. This module provides a congestion control throttling mechanism for automatically detecting a surge in incoming traffic. This mechanism is utilized by other Drupal modules to automatically optimize their performance by temporarily disabling CPU-intensive functionality.');
}