From 05676eda2069bb6e78a6d6297d8d55989bf6f123 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 8 Nov 2004 22:27:34 +0000 Subject: - Patch #12713 by Goba: remove useless t() function from help module. --- modules/help.module | 2 +- modules/help/help.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') 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 .= '
  • ' . t("$name", array('%url' => url("admin/help/$name"))) . '
  • '; + $output .= '
  • ' . t($name) . '
  • '; } } } 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 .= '
  • ' . t("$name", array('%url' => url("admin/help/$name"))) . '
  • '; + $output .= '
  • ' . t($name) . '
  • '; } } } -- cgit v1.2.3