diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index c79d588a0..169100092 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -128,7 +128,7 @@ function theme_list() { function theme_head($main = 0) { $head = module_invoke_all("head", $main); - return "\n". implode($head, "\n"). "\n"; + return implode($head, "\n"); } function theme_init() { |