From 2855be97ac62602d17ebb67a36838766b4a15b5d Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 4 Nov 2010 09:06:45 +0000 Subject: [PATCH] When adding a user to the blog pass in the current blog id. See #15316. git-svn-id: http://svn.automattic.com/wordpress/trunk@16178 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index 1171a6579..462678e96 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -1393,8 +1393,10 @@ function maybe_add_existing_user_to_blog() { } function add_existing_user_to_blog( $details = false ) { + global $blog_id; + if ( is_array( $details ) ) { - $result = add_user_to_blog( '', $details[ 'user_id' ], $details[ 'role' ] ); + $result = add_user_to_blog( $blog_id, $details[ 'user_id' ], $details[ 'role' ] ); do_action( 'added_existing_user', $details[ 'user_id' ], $result ); } return $result;