summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/theme.inc')
-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;
}