From 19b936f2a8495461e67d160286fe13aa0e78f87f Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 4 Aug 2011 16:36:50 +0000 Subject: [PATCH] Return true upon success in remove_user_from_blog(). Props eightamrock. fixes #17344 git-svn-id: https://develop.svn.wordpress.org/trunk@18510 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/ms-functions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index 2e05c48168..6068de14f9 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -291,6 +291,8 @@ function remove_user_from_blog($user_id, $blog_id = '', $reassign = '') { } restore_current_blog(); + + return true; } /**