From 84ee11c768c5df39c27fa96b3792353e7a85eb9f Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Sun, 14 Jun 2015 18:42:50 +0000 Subject: [PATCH] Revert [32732] since it is causing the tests to break See #32732 git-svn-id: https://develop.svn.wordpress.org/trunk@32766 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-setting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-customize-setting.php b/src/wp-includes/class-wp-customize-setting.php index e37bb65de8..64693a2595 100644 --- a/src/wp-includes/class-wp-customize-setting.php +++ b/src/wp-includes/class-wp-customize-setting.php @@ -129,11 +129,11 @@ class WP_Customize_Setting { * @since 4.2.0 * @access public * - * @return bool If preview() has been called. + * @return bool|void If preview() has been called. */ public function is_current_blog_previewed() { if ( ! isset( $this->_previewed_blog_id ) ) { - return false; + return; } return ( get_current_blog_id() === $this->_previewed_blog_id ); }