From bfce74bcb1e42cd38cc11e7a1ddaf249b024b075 Mon Sep 17 00:00:00 2001 From: DrewAPicture Date: Sun, 2 Mar 2014 04:40:02 +0000 Subject: [PATCH] Fix the return description for `switch_to_blog()` to reflect that it always returns true. Props jeremyfelt. Fixes #25328. git-svn-id: https://develop.svn.wordpress.org/trunk@27347 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/ms-blogs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/ms-blogs.php b/src/wp-includes/ms-blogs.php index 8d05f10c69..16a491818a 100644 --- a/src/wp-includes/ms-blogs.php +++ b/src/wp-includes/ms-blogs.php @@ -569,7 +569,7 @@ function update_blog_option( $id, $option, $value, $deprecated = null ) { * * @param int $new_blog The id of the blog you want to switch to. Default: current blog * @param bool $deprecated Deprecated argument - * @return bool True on success, false if the validation failed + * @return bool Always returns True. */ function switch_to_blog( $new_blog, $deprecated = null ) { global $wpdb, $wp_roles;