diff --git a/theme/theme.inc b/theme/theme.inc index e7f7a15..507360a 100644 --- a/theme/theme.inc +++ b/theme/theme.inc @@ -883,7 +883,7 @@ function template_preprocess_views_view_rss(&$vars) { else { $title = $view->get_title(); } - $vars['title'] = check_plain($title); + $vars['title'] = $title; // Figure out which display which has a path we're using for this feed. If there isn't // one, use the global $base_url @@ -927,7 +927,7 @@ function template_preprocess_views_view_row_rss(&$vars) { $options = &$vars['options']; $item = &$vars['row']; - $vars['title'] = check_plain($item->title); + $vars['title'] = $item->title; $vars['link'] = check_url($item->link); $vars['description'] = check_plain($item->description); $vars['item_elements'] = empty($item->elements) ? '' : format_xml_elements($item->elements);