mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 07:05:37 +01:00
Users: Re-add entity decoding to the site name before it's used in the email address change confirmation email.
This was accidentally removed in [41163]. See #40015, #16470 Built from https://develop.svn.wordpress.org/trunk@41165 git-svn-id: http://core.svn.wordpress.org/trunk@41005 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b9b4776800
commit
30d5450508
@ -2675,7 +2675,7 @@ All at ###SITENAME###
|
|||||||
$content = str_replace( '###USERNAME###', $current_user->user_login, $content );
|
$content = str_replace( '###USERNAME###', $current_user->user_login, $content );
|
||||||
$content = str_replace( '###ADMIN_URL###', esc_url( admin_url( 'profile.php?newuseremail=' . $hash ) ), $content );
|
$content = str_replace( '###ADMIN_URL###', esc_url( admin_url( 'profile.php?newuseremail=' . $hash ) ), $content );
|
||||||
$content = str_replace( '###EMAIL###', $_POST['email'], $content );
|
$content = str_replace( '###EMAIL###', $_POST['email'], $content );
|
||||||
$content = str_replace( '###SITENAME###', get_site_option( 'site_name' ), $content );
|
$content = str_replace( '###SITENAME###', wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ), $content );
|
||||||
$content = str_replace( '###SITEURL###', network_home_url(), $content );
|
$content = str_replace( '###SITEURL###', network_home_url(), $content );
|
||||||
|
|
||||||
wp_mail( $_POST['email'], sprintf( __( '[%s] New Email Address' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), $content );
|
wp_mail( $_POST['email'], sprintf( __( '[%s] New Email Address' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), $content );
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.9-alpha-41164';
|
$wp_version = '4.9-alpha-41165';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user