diff options
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()); } } |