summaryrefslogtreecommitdiff
path: root/modules/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-10-05 08:41:48 +0000
committerDries Buytaert <dries@buytaert.net>2003-10-05 08:41:48 +0000
commit30bae36aa5068fb710e2fb3d9b76f6615adaae31 (patch)
tree20876b22960a08d966f1e4f864552cc6736e6e9a /modules/help.module
parent6636aac62533281c1fedfe9df96c6e817e75dbb4 (diff)
downloadbrdo-30bae36aa5068fb710e2fb3d9b76f6615adaae31.tar.gz
brdo-30bae36aa5068fb710e2fb3d9b76f6615adaae31.tar.bz2
- Bugfix: the block module's help was not being displayed. Patch by Gabor.
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 9a4bd5d3f..953c11fde 100644
--- a/modules/help.module
+++ b/modules/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>";