Final bit of escaping in feeds. fixes #13555

git-svn-id: http://svn.automattic.com/wordpress/trunk@14952 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-05-26 18:30:51 +00:00
parent 013d15ebd4
commit 28a80ce82a
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ function comments_link_feed() {
* @param int|object $comment_id Optional comment object or id. Defaults to global comment object.
*/
function comment_guid($comment_id = null) {
echo get_comment_guid($comment_id);
echo esc_url( get_comment_guid($comment_id) );
}
/**