Un curioso bug en Drupal y de facil solucion. Solamente tenes que poner el siguiente snippet en el template.php de tu theme o bien en algún modulo de tu propia factoría :)

function TU_THEME_preprocess_page(&$vars) {
    $matches = array();
    preg_match_all('/(]*>)/', $vars['head'], $matches);
    if (count($matches) >= 2) {
        $vars['head'] = preg_replace('/]*>/', '', $vars['head'], 1); // strip 1 only
    }
}