specialchars quotes in comment title. Props deko. fixes #2915

git-svn-id: https://develop.svn.wordpress.org/trunk@3995 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-07-06 02:28:34 +00:00
parent 6fd01856c7
commit 07ac9fb01c
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Com
if (!empty($CSSclass)) {
echo ' class="'.$CSSclass.'"';
}
$title = wp_specialchars(apply_filters('the_title', get_the_title()));
$title = wp_specialchars(apply_filters('the_title', get_the_title()), true);
echo ' title="' . sprintf( __('Comment on %s'), $title ) .'">';
comments_number($zero, $one, $more, $number);
echo '</a>';