summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-23 22:06:05 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-23 22:06:05 +0000
commitee3b9e075ade829d0b42848401fcbf24779f6fc4 (patch)
tree753569dbadc05df3b7483c4022aa09879f0325ce /modules/help/help.module
parent5c3086ee4a4d6da13d1ec450aaf5728bc6b64de5 (diff)
downloadbrdo-ee3b9e075ade829d0b42848401fcbf24779f6fc4.tar.gz
brdo-ee3b9e075ade829d0b42848401fcbf24779f6fc4.tar.bz2
- Patch #104437 by kkaefer: corrected help texts.
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index 0d62d2a2b..79fd232a1 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -98,13 +98,11 @@ function help_help($section) {
$output = '<p>'. t('The help module displays context sensitive help information. Users can learn how to use modules and accomplish tasks quicker with less errors by clicking on links in provided by the help module.') .'</p>';
$output .= t("<p>Modules can make documentation available to other modules with this module. All user help should be presented using this module. Some examples of help: </p>
<ul>
-<li>The name of a module (unused, but there).</li>
-<li>The description found on the <a href=\"@modules\">module administration page</a> page.</li>
<li>The module's help text, displayed on the <a href=\"@help\">help page</a> and through the module's individual help link.</li>
+<li>More elaborate help text on sites a module defines.</li>
<li>The help for a distributed authorization module (if applicable).</li>
-<li>The description of a post type (if applicable).</li>
</ul>
-", array('@modules' => url('admin/settings/modules'), '@help' => url('admin/help')));
+", array('@help' => url('admin/help')));
$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>';
return $output;
}