﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
16463	the_title_attribute() bug	facemann_ru		"Hi, this bug appears when you try to use HTML for options as 'before' or 'after' on function '''the_title_attribute();'''

http://core.trac.wordpress.org/browser/tags/3.0.4/wp-includes/post-template.php#L74

An example from docs doesn't work:

http://codex.wordpress.org/Function_Reference/the_title_attribute


{{{
<?php the_title_attribute('before=<h3>&after=</h3>'); ?>
}}}

One of the solutions - we can move below the first line of this code:

{{{
$title = $before . $title . $after;
$title = esc_attr(strip_tags($title));
}}}

So, HTML from options won't be stripped.
"	defect (bug)	closed	normal		Template	3.0.4	normal	invalid	needs-docs	
