diff options
Diffstat (limited to 'modules/help.module')
-rw-r--r-- | modules/help.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/help.module b/modules/help.module index 157b37e0d..9719ba9e9 100644 --- a/modules/help.module +++ b/modules/help.module @@ -7,7 +7,7 @@ function help_system($field){ } function help_link($type) { - if ($type == "admin") { + if ($type == "system") { menu("admin/help/glossary", "glossary", "help_glossary", NULL, 8); menu("admin/help", "help", "help_admin", NULL, 9); } @@ -48,7 +48,6 @@ function help_admin() { } } } - $output = "<small>". implode(" · ", $links) ."</small><hr />". $output; return $output; } |