summaryrefslogtreecommitdiff
path: root/modules/help
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-25 19:26:21 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-25 19:26:21 +0000
commitc0494c0a2b2d022038baeeef33ce28bd71f35be9 (patch)
tree6538160fbe5046e15534f3fad33ec0639b363759 /modules/help
parent2df7214a09fd2c38123d7767c29ed130b5c42052 (diff)
downloadbrdo-c0494c0a2b2d022038baeeef33ce28bd71f35be9.tar.gz
brdo-c0494c0a2b2d022038baeeef33ce28bd71f35be9.tar.bz2
- Committed phase 4 of JonBob's menu system changes.
Diffstat (limited to 'modules/help')
-rw-r--r--modules/help/help.module8
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index f53853e4f..d8a11cfeb 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -28,9 +28,7 @@ function help_glossary() {
$output .= "</dl>";
$output = t($output, array("%taxonomy" => l(t("taxonomy help"), "admin/taxonomy/help")));
- print theme("header");
- print $output;
- print theme("footer");
+ print theme("page", $output);
}
function help_help($section = "admin/help#help") {
@@ -62,9 +60,7 @@ function help_help($section = "admin/help#help") {
}
function help_help_page() {
- print theme("header");
- print help_help();
- print theme("footer");
+ print theme("page", help_help());
}
?>