From 42bad1e6541798637504bac4e3c035ee74ba02dd Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 26 May 2010 18:30:51 +0000 Subject: [PATCH] Final bit of escaping in feeds. fixes #13555 git-svn-id: https://develop.svn.wordpress.org/trunk@14952 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 7323b4a9f7..10a486f459 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) ); } /**