summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-05-30 05:10:35 +0000
committerDries Buytaert <dries@buytaert.net>2003-05-30 05:10:35 +0000
commit7f2ce4aceac77f991e9f61d43420cffc40cda049 (patch)
tree125d54de2ac229cb9b6a4c98a193c04c3af32eba
parent52e6ff80033e99218c628696b62ef7cd1b05e415 (diff)
downloadbrdo-7f2ce4aceac77f991e9f61d43420cffc40cda049.tar.gz
brdo-7f2ce4aceac77f991e9f61d43420cffc40cda049.tar.bz2
- Fixed the order in which the CSS gets loaded. Patch by Al.
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index f85412621..c410e36a7 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -144,11 +144,11 @@ function theme_list($refresh = 0) {
function theme_head($main = 0) {
global $base_url;
- $head = module_invoke_all("head", $main);
$output .= "<base href=\"$base_url/\" />\n";
$output .= "<style type=\"text/css\">\n";
$output .= "@import url(misc/drupal.css);\n";
$output .= "</style>\n";
+ $head = module_invoke_all("head", $main);
$output .= implode($head, "\n");
return $output;
}