Changeset 35764 for trunk/src/wp-includes/user.php
- Timestamp:
- 12/04/2015 03:30:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r35742 r35764 1972 1972 $key_saved = $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user->user_login ) ); 1973 1973 if ( false === $key_saved ) { 1974 return WP_Error( 'no_password_key_update', __( 'Could not save password reset key to database.' ) );1974 return new WP_Error( 'no_password_key_update', __( 'Could not save password reset key to database.' ) ); 1975 1975 } 1976 1976
Note: See TracChangeset
for help on using the changeset viewer.