summaryrefslogtreecommitdiff
path: root/modules/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-11 20:31:26 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-11 20:31:26 +0000
commita8b8c247db070d96a663ab8bb57a40ead173300a (patch)
tree959b434490bbc22d4f73ded0adbaff21600a7262 /modules/help.module
parent5ac59aacd2c5d60155b7236c588bed2e750b3e04 (diff)
downloadbrdo-a8b8c247db070d96a663ab8bb57a40ead173300a.tar.gz
brdo-a8b8c247db070d96a663ab8bb57a40ead173300a.tar.bz2
- Patch #5021: clean up URLs in _help texts. Patch by UnConeD.
Diffstat (limited to 'modules/help.module')
-rw-r--r--modules/help.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/help.module b/modules/help.module
index d8a11cfeb..5020ab590 100644
--- a/modules/help.module
+++ b/modules/help.module
@@ -21,12 +21,12 @@ function help_glossary() {
$output .= "<dt>Public</dt><dd>See published.</dd>";
$output .= "<dt>Published</dt><dd>A node that is viewable by everyone. (See unpublished.)</dd>";
$output .= "<dt>Role</dt><dd>A classification users are placed into for the purpose of setting users' permissions.</dd>";
- $output .= "<dt>Taxonomy</dt><dd>A division of a collection of things into ordered, classified groups. (See %taxonomy.)</dd>";
+ $output .= "<dt>Taxonomy</dt><dd>A division of a collection of things into ordered, classified groups. (See <a href=\"%taxonomy\">taxonomy help</a>.)</dd>";
$output .= "<dt>Unpublished</dt><dd>A node that is only viewable by administrators and moderators.</dd>";
$output .= "<dt>User</dt><dd>A person who has an account at your Drupal site, and is logged in with that account.</dd>";
$output .= "<dt>Visitor</dt><dd>A person who does not have an account at your Drupal site or a person who has an account at your Drupal site but is <u>not</u> logged in with that account. Also termed \"anonymous user\".</dd>";
$output .= "</dl>";
- $output = t($output, array("%taxonomy" => l(t("taxonomy help"), "admin/taxonomy/help")));
+ $output = t($output, array("%taxonomy" => url("admin/taxonomy/help")));
print theme("page", $output);
}