From 07ac9fb01c1f80d116352355fefdb49fdd5b018d Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 6 Jul 2006 02:28:34 +0000 Subject: [PATCH] specialchars quotes in comment title. Props deko. fixes #2915 git-svn-id: https://develop.svn.wordpress.org/trunk@3995 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 '';