Skip to content
Snippets Groups Projects
Commit c4589ff2 authored by Eric Rasmussen's avatar Eric Rasmussen
Browse files

[gh-393] Don't use check_plain on title tag

Special characters like & are ending up double encoded as & since UNL templates pear package already takes care of it
parent 5cd36e23
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ function unl_wdn_preprocess_html(&$vars, $hook) {
if (variable_get('site_name') != 'University of Nebraska–Lincoln') {
$vars['head_title_array'] = array_merge($vars['head_title_array'], array('UNL' => 'University of Nebraska–Lincoln'));
}
$vars['head_title'] = check_plain(implode(' | ', $vars['head_title_array']));
$vars['head_title'] = implode(' | ', $vars['head_title_array']);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment