summaryrefslogtreecommitdiff
path: root/modules/throttle
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-06-20 19:49:14 +0000
committerDries Buytaert <dries@buytaert.net>2004-06-20 19:49:14 +0000
commitc2d7419f23dd2929e7178e2f09f327e08faa348b (patch)
treee16ca920886af5619bd3bc51776c428c73c7c2d4 /modules/throttle
parent4b449a7e5d6347603fa3a1ed70d0e9273db2b92b (diff)
downloadbrdo-c2d7419f23dd2929e7178e2f09f327e08faa348b.tar.gz
brdo-c2d7419f23dd2929e7178e2f09f327e08faa348b.tar.bz2
- Patch #8681 by stefan: fixed some broken URLs and help texts.
Diffstat (limited to 'modules/throttle')
-rw-r--r--modules/throttle/throttle.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/throttle/throttle.module b/modules/throttle/throttle.module
index fe5fe6b10..90424a0ad 100644
--- a/modules/throttle/throttle.module
+++ b/modules/throttle/throttle.module
@@ -61,7 +61,7 @@ function throttle_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('Allows configuration of congestion control auto-throttle mechanism.');
- case 'admin/modules/throttle':
+ 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 mechanism for automatically detecting a surge in incoming traffic. This mechanism is utilized by other Drupal models to automatically optimize their performance by temporarily disabling CPU-intensive functionality. To use the auto-throttle, the access log must be enabled. It is advised that you carefully read the explanations below and then properly tune this module based on your site\'s requirements and your webserver\'s capabilities.', array('%access' => url('admin/modules/statistics')));
case 'admin/help#throttle':
return t("
@@ -96,7 +96,7 @@ function throttle_help($section) {
else {
// throttle limit not reached, execute normally
}</pre>
- </p>", array('%statistics-module' => url('admin/statistics'), '%throttle-block' => url('admin/user/permission'), '%modules-enable' => url('admin/modules'), '%throttle-config' => url('admin/modules/throttle'), '%statistics-config' => url('admin/modules/statistics'), '%throttle-access' => url('admin/user/permission'), '%throttle-block-enable' => url('admin/block'), '%permissions' => url('admin/user/permission')));
+ </p>", array('%statistics-module' => url('admin/statistics'), '%throttle-block' => url('admin/user/configure/permission'), '%modules-enable' => url('admin/modules'), '%throttle-config' => url('admin/settings/throttle'), '%statistics-config' => url('admin/modules/statistics'), '%throttle-access' => url('admin/user/configure/permission'), '%throttle-block-enable' => url('admin/block'), '%permissions' => url('admin/user/configure/permission')));
}
}