Change send_pass_change_email to send_password_change_email (better name).

see #32430

git-svn-id: https://develop.svn.wordpress.org/trunk@33486 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2015-07-29 14:51:52 +00:00
parent e43b4db995
commit 2a25f9ce22

View File

@ -2167,7 +2167,7 @@ function wp_update_user($userdata) {
* @param array $userdata The updated user array. * @param array $userdata The updated user array.
* *
*/ */
$send_pass_change_email = apply_filters( 'send_pass_change_email', true, $user, $userdata ); $send_password_change_email = apply_filters( 'send_password_change_email', true, $user, $userdata );
} }
if ( isset( $userdata['user_email'] ) && $user['user_email'] !== $userdata['user_email'] ) { if ( isset( $userdata['user_email'] ) && $user['user_email'] !== $userdata['user_email'] ) {
@ -2196,7 +2196,7 @@ function wp_update_user($userdata) {
$blog_name = wp_specialchars_decode( get_option( 'blogname' ) ); $blog_name = wp_specialchars_decode( get_option( 'blogname' ) );
if ( ! empty( $send_pass_change_email ) ) { if ( ! empty( $send_password_change_email ) ) {
/* translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, SITEURL: those are placeholders. */ /* translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, SITEURL: those are placeholders. */
$pass_change_text = __( 'Hi ###USERNAME###, $pass_change_text = __( 'Hi ###USERNAME###,