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/import.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/import.module')
-rw-r--r-- | modules/import.module | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/modules/import.module b/modules/import.module index a01b46653..e4a644a6c 100644 --- a/modules/import.module +++ b/modules/import.module @@ -76,9 +76,7 @@ function import_help($section = "admin/help#import") { } function import_help_page() { - print theme("header"); - print import_help(); - print theme("footer"); + print theme("page", import_help()); } function import_settings() { @@ -618,14 +616,10 @@ function import_admin() { default: $output .= import_view(); } - 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()); } } |