chameleon.theme currently does $output .= "<body ". theme_onload_attribute() .">\n";, which puts out &lt;/head>&lt;body >. The extra space in the &lt;body> tag is there because theme_onload_attribute() already adds a space.

One line patch attached.

CommentFileSizeAuthor
chameleon-body.patch948 bytesmarky
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

marky’s picture

sorry, forgot to escape - that should have been:

$output .= "<body ". theme_onload_attribute() .">\n";

Dries’s picture

Committed to HEAD and DRUPAL-4-4. Thanks.

Anonymous’s picture