summaryrefslogtreecommitdiff
path: root/modules/throttle.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-02-02 18:38:50 +0000
committerDries Buytaert <dries@buytaert.net>2006-02-02 18:38:50 +0000
commitd12fa41b274144ab16c7f1dcafe45ae31dd433d0 (patch)
tree7612c0c85dfbf6a9c8477f6f91667c7bd523cedd /modules/throttle.module
parent048bec139e022952d90c10b2ddb34f06dec607be (diff)
downloadbrdo-d12fa41b274144ab16c7f1dcafe45ae31dd433d0.tar.gz
brdo-d12fa41b274144ab16c7f1dcafe45ae31dd433d0.tar.bz2
- Patch #47584 by Kobus: improved throttle module help text.
Diffstat (limited to 'modules/throttle.module')
-rw-r--r--modules/throttle.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/throttle.module b/modules/throttle.module
index 7b91194c5..980b79fa1 100644
--- a/modules/throttle.module
+++ b/modules/throttle.module
@@ -105,7 +105,7 @@ function throttle_help($section) {
switch ($section) {
case 'admin/help#throttle':
$output = '<p>'. t('The throttle module provides a congestion control throttling mechanism for automatically detecting a surge in incoming traffic. If the site gets linked to by a popular website, or otherwise comes under a "Denial of Service" (DoS) attack, your webserver might become overwhelmed. This mechanism is utilized by other modules to automatically optimize their performance by temporarily disabling CPU-intensive functionality. For example, in the site theme, you might choose to disable pictures when the site is too busy (reducing bandwidth), or in modules, you might choose to disable some complicated logic (reducing CPU utilization).') .'</p>';
- $output .= '<p>'. t('The congestion control throttle can be automatically enabled when the number of anonymous users currently visiting the site exceeds the specified threshold. The congestion control throttle can be automatically enabled when the number of authenticated users currently visiting the site exceeds the specified threshold. ') .'</p>';
+ $output .= '<p>'. t('The congestion control throttle can be automatically enabled when the number of anonymous or authenticated users currently visiting the site exceeds the specified threshold. ') .'</p>';
$output .= t('<p>You can</p>
<ul>
<li>enable throttle for modules at <a href="%admin-modules">administer &gt;&gt; module</a>.</li>