diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index c5d5b8f2cc..1172bdfb33 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -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 '';