summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
commitb6532a4fdbb5e32f2ab3bd7250aedd435313e52e (patch)
tree9859cf173b9c7bc75ddd1901fd77d05d9b3a28a1 /modules/help/help.module
parent4f2b77bcd99584b2a31cb9900620f376a7707b2f (diff)
downloadbrdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.gz
brdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.bz2
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index 2189b83ff..2daff64b3 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -41,7 +41,7 @@ function help_help($path, $arg) {
return $output;
case 'admin/help#help':
$output = '<p>'. t('The help module provides context sensitive help on the use and configuration of <a href="@drupal">Drupal</a> and its modules, and is a supplement to the more extensive online <a href="@handbook">Drupal handbook</a>. The online handbook may contain more up-to-date information, is annotated with helpful user-contributed comments, and serves as the definitive reference point for all Drupal documentation.', array('@drupal' => 'http://drupal.org', '@handbook' => 'http://drupal.org/handbook')) .'</p>';
- $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@help">Help page</a>.', array('@help' => 'http://drupal.org/handbook/modules/help/')) .'</p>';
+ $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@help">Help module</a>.', array('@help' => 'http://drupal.org/handbook/modules/help/')) .'</p>';
return $output;
}
}