From 71d2e5ac032dbedca0e3448f1e105813344c8a67 Mon Sep 17 00:00:00 2001 From: webchick Date: Fri, 24 Jan 2014 20:28:59 -0800 Subject: [PATCH] Issue #2107699 by InternetDevels, djevans: Output the RDFa prefix mappings on the same line. --- core/modules/rdf/rdf.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/rdf/rdf.module b/core/modules/rdf/rdf.module index 20657c8c442..c48e68392ba 100644 --- a/core/modules/rdf/rdf.module +++ b/core/modules/rdf/rdf.module @@ -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 . " "; } }