From 7f2ce4aceac77f991e9f61d43420cffc40cda049 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 30 May 2003 05:10:35 +0000 Subject: - Fixed the order in which the CSS gets loaded. Patch by Al. --- includes/theme.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes') 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 .= "\n"; $output .= "\n"; + $head = module_invoke_all("head", $main); $output .= implode($head, "\n"); return $output; } -- cgit v1.2.3