diff options
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index f32f4a2ce..38c858c99 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -47,9 +47,7 @@ function system_help($section = "admin/help#system") { } function system_help_page() { - print theme("header"); - print system_help(); - print theme("footer"); + print theme("page", system_help()); } function system_perm() { @@ -358,14 +356,10 @@ function system_admin() { } $output .= system_view(arg(2), arg(3)); - 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()); } } |