diff options
Diffstat (limited to 'modules/help/help.module')
-rw-r--r-- | modules/help/help.module | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/modules/help/help.module b/modules/help/help.module index f7477a2ab..f53853e4f 100644 --- a/modules/help/help.module +++ b/modules/help/help.module @@ -4,7 +4,7 @@ function help_link($type) { if ($type == "system" && user_access("access administration pages")) { menu("admin/help/glossary", t("glossary"), "help_glossary", 8); - menu("admin/help", t("help"), "help_help", 9); + menu("admin/help", t("help"), "help_help_page", 9); } } @@ -28,7 +28,9 @@ function help_glossary() { $output .= "</dl>"; $output = t($output, array("%taxonomy" => l(t("taxonomy help"), "admin/taxonomy/help"))); - return $output; + print theme("header"); + print $output; + print theme("footer"); } function help_help($section = "admin/help#help") { @@ -59,4 +61,10 @@ function help_help($section = "admin/help#help") { return $output; } +function help_help_page() { + print theme("header"); + print help_help(); + print theme("footer"); +} + ?> |