From 97280576c0eda2fde3ff300c47bc4f960c3dcd1e Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 29 Jul 2015 14:52:26 +0000 Subject: [PATCH] Change send_pass_change_email to send_password_change_email (better name). see #32430 Built from https://develop.svn.wordpress.org/trunk@33486 git-svn-id: http://core.svn.wordpress.org/trunk@33453 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 27f4557716..54b09ff9f9 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -2167,7 +2167,7 @@ function wp_update_user($userdata) { * @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'] ) { @@ -2196,7 +2196,7 @@ function wp_update_user($userdata) { $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. */ $pass_change_text = __( 'Hi ###USERNAME###, diff --git a/wp-includes/version.php b/wp-includes/version.php index cc96c39559..296cfd4f30 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta4-33485'; +$wp_version = '4.3-beta4-33486'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.