﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
8454	Comments-RSS uses html-entities in translated text	schlafbaum	anonymous	"If the translation of eg. ""Comments on: %s"", used in feed-rss2-coments.php and feed-atom-comments.php, uses special chars like &uuml; for ü, the comments feed will not alidate because of ""Undefined named entity"".

Solution: wrapping translation in html_entity_decode like:
feed-rss2-comments.php, line 21:
instead of:
{{{printf(__('Comments on: %s', ENT_QUOTES, get_option('blog_charset')));}}}

do:
{{{printf(html_entity_decode(__('Comments on: %s', ENT_QUOTES, get_option('blog_charset')), get_the_title_rss());}}}

Translated text is used in 5 lines in both mentioned files."	defect (bug)	closed	normal		General		normal	duplicate		
