summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-04-21 13:56:09 +0000
committerDries Buytaert <dries@buytaert.net>2003-04-21 13:56:09 +0000
commitb505b5ab65276e36053ef76c81eddc8bfaf61585 (patch)
treebb9887ed777bdacbe73028c857600cf880887194 /modules
parentcfb4d31f65b39a51e61676662e2995037332b02c (diff)
downloadbrdo-b505b5ab65276e36053ef76c81eddc8bfaf61585.tar.gz
brdo-b505b5ab65276e36053ef76c81eddc8bfaf61585.tar.bz2
- Committed Gordon's htmlarea patch.
Diffstat (limited to 'modules')
-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>