Changeset 34107 for trunk/src/wp-includes/user-functions.php
- Timestamp:
- 09/14/2015 02:44:41 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user-functions.php
r33954 r34107 1917 1917 update_user_option( $user->ID, 'default_password_nag', false, true ); 1918 1918 1919 wp_password_change_notification( $user ); 1919 /** 1920 * Fires after the user's password is reset. 1921 * 1922 * @since 4.4.0 1923 * 1924 * @param object $user The user. 1925 * @param string $new_pass New user password. 1926 */ 1927 do_action( 'after_password_reset', $user, $new_pass ); 1920 1928 } 1921 1929
Note: See TracChangeset
for help on using the changeset viewer.