diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-04-21 13:56:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-04-21 13:56:09 +0000 |
commit | b505b5ab65276e36053ef76c81eddc8bfaf61585 (patch) | |
tree | bb9887ed777bdacbe73028c857600cf880887194 /modules | |
parent | cfb4d31f65b39a51e61676662e2995037332b02c (diff) | |
download | brdo-b505b5ab65276e36053ef76c81eddc8bfaf61585.tar.gz brdo-b505b5ab65276e36053ef76c81eddc8bfaf61585.tar.bz2 |
- Committed Gordon's htmlarea patch.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin.module | 4 |
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> |