diff options
Diffstat (limited to 'modules/help')
-rw-r--r-- | modules/help/help.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/help/help.module b/modules/help/help.module index 9a4bd5d3f..953c11fde 100644 --- a/modules/help/help.module +++ b/modules/help/help.module @@ -47,7 +47,7 @@ function help_admin($section = "admin/help") { case 'admin/help': foreach (module_list() as $name) { if (module_hook($name, "help")) { - $temp = module_invoke($name, "help", "admin/".$name."/help"); + $temp = module_invoke($name, "help", "admin/$name/help"); if (!empty($temp)) { $links[] = l($name, "admin/help#$name"); $output .= "<h2><a id=\"$name\">". ucfirst($name) ." module</a></h2>"; |