From 28a80ce82af438e76c4841990f98a702ace845df Mon Sep 17 00:00:00 2001 From: nacin Date: Wed, 26 May 2010 18:30:51 +0000 Subject: [PATCH] Final bit of escaping in feeds. fixes #13555 git-svn-id: http://svn.automattic.com/wordpress/trunk@14952 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/feed.php b/wp-includes/feed.php index 7323b4a9f..10a486f45 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -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) ); } /**