Final bit of escaping in feeds. fixes #13555

git-svn-id: https://develop.svn.wordpress.org/trunk@14952 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-05-26 18:30:51 +00:00
parent 2c97921f07
commit 42bad1e654
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) );
}
/**