Specialchars title. Props David House and Mark Jaquith. fixes #2625
git-svn-id: http://svn.automattic.com/wordpress/trunk@3874 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
53ad887f0d
commit
11704456ce
|
@ -366,7 +366,8 @@ function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Com
|
||||||
if (!empty($CSSclass)) {
|
if (!empty($CSSclass)) {
|
||||||
echo ' class="'.$CSSclass.'"';
|
echo ' class="'.$CSSclass.'"';
|
||||||
}
|
}
|
||||||
echo ' title="' . sprintf( __('Comment on %s'), $post->post_title ) .'">';
|
$title = wp_specialchars(apply_filters('the_title', get_the_title()));
|
||||||
|
echo ' title="' . sprintf( __('Comment on %s'), $title ) .'">';
|
||||||
comments_number($zero, $one, $more, $number);
|
comments_number($zero, $one, $more, $number);
|
||||||
echo '</a>';
|
echo '</a>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue