diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-25 19:26:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-25 19:26:21 +0000 |
commit | c0494c0a2b2d022038baeeef33ce28bd71f35be9 (patch) | |
tree | 6538160fbe5046e15534f3fad33ec0639b363759 /modules/block.module | |
parent | 2df7214a09fd2c38123d7767c29ed130b5c42052 (diff) | |
download | brdo-c0494c0a2b2d022038baeeef33ce28bd71f35be9.tar.gz brdo-c0494c0a2b2d022038baeeef33ce28bd71f35be9.tar.bz2 |
- Committed phase 4 of JonBob's menu system changes.
Diffstat (limited to 'modules/block.module')
-rw-r--r-- | modules/block.module | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/modules/block.module b/modules/block.module index 1ae859566..a6ba60145 100644 --- a/modules/block.module +++ b/modules/block.module @@ -54,9 +54,7 @@ function block_help($section = "admin/help#block") { } function block_help_page() { - print theme("header"); - print block_help(); - print theme("footer"); + print theme("page", block_help()); } function block_perm() { @@ -312,14 +310,10 @@ function block_admin() { $output .= block_admin_display(); } - print theme("header"); - print $output; - print theme("footer"); + print theme("page", $output); } else { - print theme("header"); - print message_access(); - print theme("footer"); + print theme("page", message_access()); } } |