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
This commit is contained in:
Aaron Jorbin 2015-06-14 18:42:50 +00:00
parent caf041d76e
commit 84ee11c768
1 changed files with 2 additions and 2 deletions

View File

@ -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 );
}