From 01eb6fc0d7ad2d40a6275ffd18b7949beaa4ec7e Mon Sep 17 00:00:00 2001 From: Brandon Bergren Date: Wed, 4 Jun 2014 12:43:27 -0500 Subject: [PATCH] Fix double escaping of the head title. --- core/includes/theme.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/includes/theme.inc b/core/includes/theme.inc index f577e3f..5502bc5 100644 --- a/core/includes/theme.inc +++ b/core/includes/theme.inc @@ -2024,7 +2024,7 @@ function template_preprocess_html(&$variables) { } $variables['head_title_array'] = $head_title; - $variables['head_title'] = implode(' | ', $head_title); + $variables['head_title'] = SafeMarkup::implode(' | ', $head_title); // @todo Remove drupal_*_html_head() and refactor accordingly. $html_heads = drupal_get_html_head(FALSE); -- 1.7.10.4