summaryrefslogtreecommitdiff
path: root/modules/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-11-08 22:27:34 +0000
committerDries Buytaert <dries@buytaert.net>2004-11-08 22:27:34 +0000
commit05676eda2069bb6e78a6d6297d8d55989bf6f123 (patch)
tree7e2a90777f3a64a1df45345946127ab0e4534293 /modules/help.module
parentbb0f78ecb5c8085a51d836f6464cb63c21244c99 (diff)
downloadbrdo-05676eda2069bb6e78a6d6297d8d55989bf6f123.tar.gz
brdo-05676eda2069bb6e78a6d6297d8d55989bf6f123.tar.bz2
- Patch #12713 by Goba: remove useless t() function from help module.
Diffstat (limited to 'modules/help.module')
-rw-r--r--modules/help.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/help.module b/modules/help.module
index 54625260c..cc6722a6e 100644
--- a/modules/help.module
+++ b/modules/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>';
}
}
}