Use a CDATA second for comment authors in RSS2 comment feeds so that HTML in comments doesn't kill the XML validation.
Fixes #17767 props wonderboymusic, dzver. Built from https://develop.svn.wordpress.org/trunk@25009 git-svn-id: http://core.svn.wordpress.org/trunk@25003 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9a32de38a5
commit
cfdc33879e
|
@ -47,7 +47,7 @@ if ( have_comments() ) : while ( have_comments() ) : the_comment();
|
||||||
}
|
}
|
||||||
?></title>
|
?></title>
|
||||||
<link><?php comment_link() ?></link>
|
<link><?php comment_link() ?></link>
|
||||||
<dc:creator><?php echo get_comment_author_rss() ?></dc:creator>
|
<dc:creator><![CDATA[<?php echo get_comment_author_rss() ?>]]></dc:creator>
|
||||||
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_comment_time('Y-m-d H:i:s', true, false), false); ?></pubDate>
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_comment_time('Y-m-d H:i:s', true, false), false); ?></pubDate>
|
||||||
<guid isPermaLink="false"><?php comment_guid() ?></guid>
|
<guid isPermaLink="false"><?php comment_guid() ?></guid>
|
||||||
<?php if ( post_password_required($comment_post) ) : ?>
|
<?php if ( post_password_required($comment_post) ) : ?>
|
||||||
|
|
Loading…
Reference in New Issue