From a6c63d4feb8fe511c7fb679949e865ca809cc78f Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Wed, 17 Jul 2013 07:40:05 -0700 Subject: [PATCH] Issue #1977644 by ifrik, batigolix: Update Ban module hook_help to help standards by adding link to online docs --- core/modules/ban/ban.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/ban/ban.module b/core/modules/ban/ban.module index ffddbfaab18..a703a75f052 100644 --- a/core/modules/ban/ban.module +++ b/core/modules/ban/ban.module @@ -13,7 +13,7 @@ function ban_help($path, $arg) { case 'admin/help#ban': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Ban module allows administrators to ban visits to their site from individual IP addresses.') . '

'; + $output .= '

' . t('The Ban module allows administrators to ban visits to their site from individual IP addresses. For more information, see the online documentation for the Ban module.', array('@url' => 'https://drupal.org/documentation/modules/ban')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Banning IP addresses') . '
';