diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-04 10:43:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-04 10:43:34 +0000 |
commit | d24e8315f16e00c6e476abf7a2d40d3ce6a9a4ca (patch) | |
tree | 1828972610edc83f8e5588f0a584e638b8080095 /modules/throttle | |
parent | ab1d68d166ca57e6a0c0de6d940dd395826e37f4 (diff) | |
download | brdo-d24e8315f16e00c6e476abf7a2d40d3ce6a9a4ca.tar.gz brdo-d24e8315f16e00c6e476abf7a2d40d3ce6a9a4ca.tar.bz2 |
- Patch #100987 by dvessel: paragraph tag to help text.
Diffstat (limited to 'modules/throttle')
-rw-r--r-- | modules/throttle/throttle.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/throttle/throttle.module b/modules/throttle/throttle.module index 952e197ff..d31390664 100644 --- a/modules/throttle/throttle.module +++ b/modules/throttle/throttle.module @@ -127,7 +127,7 @@ function throttle_help($section) { $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/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.'); + return '<p>'. 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.') .'</p>'; } } |