Feeds: Escape `&` characters in `atom_site_icon()` for XML, for consistency with `rss2_site_icon()`.
Props abhijitrakas, shawfactor. Fixes #47482. git-svn-id: https://develop.svn.wordpress.org/trunk@45753 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
7b11f12d96
commit
9bb2eea37a
|
@ -587,7 +587,7 @@ function prep_atom_text_construct( $data ) {
|
||||||
function atom_site_icon() {
|
function atom_site_icon() {
|
||||||
$url = get_site_icon_url( 32 );
|
$url = get_site_icon_url( 32 );
|
||||||
if ( $url ) {
|
if ( $url ) {
|
||||||
echo "<icon>$url</icon>\n";
|
echo '<icon>' . convert_chars( $url ) . "</icon>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue