mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 15:46:04 +01:00
Reset Password: Add a missing new
operator for WP_Error
in get_password_reset_key()
.
Missed in [34923]. Fixes #34180. Built from https://develop.svn.wordpress.org/trunk@35764 git-svn-id: http://core.svn.wordpress.org/trunk@35728 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
de586c98c4
commit
7250749032
@ -1971,7 +1971,7 @@ function get_password_reset_key( $user ) {
|
|||||||
$hashed = time() . ':' . $wp_hasher->HashPassword( $key );
|
$hashed = time() . ':' . $wp_hasher->HashPassword( $key );
|
||||||
$key_saved = $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user->user_login ) );
|
$key_saved = $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user->user_login ) );
|
||||||
if ( false === $key_saved ) {
|
if ( false === $key_saved ) {
|
||||||
return WP_Error( 'no_password_key_update', __( 'Could not save password reset key to database.' ) );
|
return new WP_Error( 'no_password_key_update', __( 'Could not save password reset key to database.' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
return $key;
|
return $key;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-RC1-35763';
|
$wp_version = '4.4-RC1-35764';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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