From ee4ccb6e4c116ca403f2ac1ad2a30c5d1e08cf7e Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Fri, 23 Apr 2004 06:13:34 +0000 Subject: [PATCH] - Patch #7332 by marky: don't emit extra whitespace withing <body> --- themes/chameleon/chameleon.theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index 9a35e51d6ae1..c9809e377378 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -49,7 +49,7 @@ function chameleon_page($content, $title = NULL, $breadcrumb = NULL) { $output .= " <link rel=\"stylesheet\" type=\"text/css\" href=\"themes/chameleon/common.css\" />\n"; $output .= " <link rel=\"stylesheet\" type=\"text/css\" href=\"". variable_get("chameleon_stylesheet", "themes/chameleon/pure/chameleon.css") ."\" />\n"; $output .= "</head>"; - $output .= "<body ". theme_onload_attribute() .">\n"; + $output .= "<body". theme_onload_attribute() .">\n"; $output .= " <div id=\"header\">"; $output .= " <h1 class=\"title\">". l(variable_get("site_name", "drupal"), ""). "</h1>"; $output .= " </div>\n"; -- GitLab