summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
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 54625260c..cc6722a6e 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -67,7 +67,7 @@ function help_links_as_list() {
foreach (module_list() as $name) {
if (module_hook($name, 'help')) {
if (module_invoke($name, 'help', "admin/help#$name")) {
- $output .= '<li>' . t("<a href=\"%url\">$name</a>", array('%url' => url("admin/help/$name"))) . '</li>';
+ $output .= '<li><a href="' . url("admin/help/$name") . '">' . t($name) . '</a></li>';
}
}
}