diff --git a/modules/throttle.module b/modules/throttle.module index 7b91194c5cc..980b79fa1fc 100644 --- a/modules/throttle.module +++ b/modules/throttle.module @@ -105,7 +105,7 @@ function throttle_help($section) { switch ($section) { case 'admin/help#throttle': $output = '

'. 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).') .'

'; - $output .= '

'. 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. ') .'

'; + $output .= '

'. 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. ') .'

'; $output .= t('

You can