Changeset 50981 for trunk/src/wp-includes/user.php
- Timestamp:
- 05/24/2021 07:58:13 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r50935 r50981 2874 2874 2875 2875 wp_set_password( $new_pass, $user->ID ); 2876 update_user_ option( $user->ID, 'default_password_nag', false, true );2876 update_user_meta( $user->ID, 'default_password_nag', false ); 2877 2877 2878 2878 /** … … 2985 2985 } 2986 2986 2987 update_user_ option( $user_id, 'default_password_nag', true, true ); // Set up the password change nag.2987 update_user_meta( $user_id, 'default_password_nag', true ); // Set up the password change nag. 2988 2988 2989 2989 /**
Note: See TracChangeset
for help on using the changeset viewer.