Issue #2107699 by InternetDevels, djevans: Output the RDFa prefix mappings on the same line.

8.0.x
webchick 2014-01-24 20:28:59 -08:00
parent 48ce65ba48
commit 71d2e5ac03
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ function rdf_preprocess_html(&$variables) {
$variables['html_attributes']['prefix'] = array();
}
foreach(rdf_get_namespaces() as $prefix => $uri) {
$variables['html_attributes']['prefix'][] = $prefix . ': ' . $uri . "\n";
$variables['html_attributes']['prefix'][] = $prefix . ': ' . $uri . " ";
}
}