summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-18 21:44:38 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-18 21:44:38 +0000
commit2b7b447468a682a8dfc745de077f83ed23beb39e (patch)
tree34d9c6b4e49fbe1865b0f44315408a6fe3a47974 /modules/help/help.module
parente614ac10346571239ea0f96881bde78d52ac3044 (diff)
downloadbrdo-2b7b447468a682a8dfc745de077f83ed23beb39e.tar.gz
brdo-2b7b447468a682a8dfc745de077f83ed23beb39e.tar.bz2
- Patch #103946 by kkaefer: fixed broken help text.
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index f23325497..0d62d2a2b 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -99,12 +99,12 @@ function help_help($section) {
$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 admin/settings/modules page.</li>
-<li>The module's help text, displayed on the admin/help page and through the module\'s individual help link.</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>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')));
$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;
}