Feeds: Escape `&` characters in `atom_site_icon()` for XML, for consistency with `rss2_site_icon()`.
Props abhijitrakas, shawfactor. Fixes #47482. Built from https://develop.svn.wordpress.org/trunk@45753 git-svn-id: http://core.svn.wordpress.org/trunk@45564 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2ac34c799b
commit
d5fc1647c0
|
@ -587,7 +587,7 @@ function prep_atom_text_construct( $data ) {
|
|||
function atom_site_icon() {
|
||||
$url = get_site_icon_url( 32 );
|
||||
if ( $url ) {
|
||||
echo "<icon>$url</icon>\n";
|
||||
echo '<icon>' . convert_chars( $url ) . "</icon>\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-45752';
|
||||
$wp_version = '5.3-alpha-45753';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue