Users: Use clean_user_cache()
in wp_insert_user()
, wp_update_user()
, wp_set_password()
, add_user_to_blog()
.
Props spacedmonkey. Fixes #47021. git-svn-id: https://develop.svn.wordpress.org/trunk@45715 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f912470ac3
commit
750a5c4749
@ -206,9 +206,12 @@ function add_user_to_blog( $blog_id, $user_id, $role ) {
|
||||
* @param int $blog_id Blog ID.
|
||||
*/
|
||||
do_action( 'add_user_to_blog', $user_id, $role, $blog_id );
|
||||
wp_cache_delete( $user_id, 'users' );
|
||||
|
||||
clean_user_cache( $user_id );
|
||||
wp_cache_delete( $blog_id . '_user_count', 'blog-details' );
|
||||
|
||||
restore_current_blog();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -2506,7 +2506,7 @@ if ( ! function_exists( 'wp_set_password' ) ) :
|
||||
array( 'ID' => $user_id )
|
||||
);
|
||||
|
||||
wp_cache_delete( $user_id, 'users' );
|
||||
clean_user_cache( $user_id );
|
||||
}
|
||||
endif;
|
||||
|
||||
|
@ -1853,8 +1853,8 @@ function wp_insert_user( $userdata ) {
|
||||
} elseif ( ! $update ) {
|
||||
$user->set_role( get_option( 'default_role' ) );
|
||||
}
|
||||
wp_cache_delete( $user_id, 'users' );
|
||||
wp_cache_delete( $user_login, 'userlogins' );
|
||||
|
||||
clean_user_cache( $user_id );
|
||||
|
||||
if ( $update ) {
|
||||
/**
|
||||
@ -1980,8 +1980,7 @@ function wp_update_user( $userdata ) {
|
||||
$send_email_change_email = apply_filters( 'send_email_change_email', true, $user, $userdata );
|
||||
}
|
||||
|
||||
wp_cache_delete( $user['user_email'], 'useremail' );
|
||||
wp_cache_delete( $user['user_nicename'], 'userslugs' );
|
||||
clean_user_cache( $user_obj );
|
||||
|
||||
// Merge old and new fields with new fields overwriting old ones.
|
||||
$userdata = array_merge( $user, $userdata );
|
||||
|
Loading…
Reference in New Issue
Block a user