Users: Use self_admin_url()
for the email change confirmation link.
Prevents sending users to wp-admin/profile.php if they only have access to wp-admin/user/profile.php. Fixes #35766. git-svn-id: https://develop.svn.wordpress.org/trunk@36503 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1c2f0896db
commit
96b6828558
@ -309,7 +309,7 @@ All at ###SITENAME###
|
|||||||
|
|
||||||
$current_user = wp_get_current_user();
|
$current_user = wp_get_current_user();
|
||||||
$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( 'options.php?adminhash='.$hash ) ), $content );
|
$content = str_replace( '###ADMIN_URL###', esc_url( self_admin_url( 'options.php?adminhash='.$hash ) ), $content );
|
||||||
$content = str_replace( '###EMAIL###', $value, $content );
|
$content = str_replace( '###EMAIL###', $value, $content );
|
||||||
$content = str_replace( '###SITENAME###', get_site_option( 'site_name' ), $content );
|
$content = str_replace( '###SITENAME###', get_site_option( 'site_name' ), $content );
|
||||||
$content = str_replace( '###SITEURL###', network_home_url(), $content );
|
$content = str_replace( '###SITEURL###', network_home_url(), $content );
|
||||||
|
Loading…
Reference in New Issue
Block a user