summaryrefslogtreecommitdiff
path: root/modules/admin.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/admin.module')
-rw-r--r--modules/admin.module4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/admin.module b/modules/admin.module
index e6b03e66d..670c85122 100644
--- a/modules/admin.module
+++ b/modules/admin.module
@@ -40,8 +40,9 @@ function admin_page() {
<style type="text/css" title="layout" media="Screen">
@import url("misc/admin.css");
</style>
+ <?php print theme_head(); ?>
</head>
- <body>
+ <body<?php print theme_onload_attribute(); ?>>
<?php
// NOTE: we include a dummy "print.css" to remove the "flash of unstyled content" (FUOC) problems in IE.
@@ -87,6 +88,7 @@ function admin_page() {
echo "<h1><a href=\"index.php\">". variable_get("site_name", "drupal") ."</a></h1>";
print menu_tree("admin") ;
print "</div>";
+ print theme_footer();
?>
</body>
</html>