diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index a9473786a5..d88f46fb56 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -316,7 +316,7 @@ function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Com echo ' class="'.$CSSclass.'"'; } $title = wp_specialchars(apply_filters('the_title', get_the_title())); - echo ' title="' . sprintf( __('Comment on %s'), $title ) .'">'; + echo ' title="' . sprintf( __('Comment on %s'), wp_specialchars($title, 'double') ) .'">'; comments_number($zero, $one, $more, $number); echo ''; }