Revert [32732] since it is causing the tests to break

See #32732


Built from https://develop.svn.wordpress.org/trunk@32766


git-svn-id: http://core.svn.wordpress.org/trunk@32737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Aaron Jorbin 2015-06-14 18:43:25 +00:00
parent cbb6f91a29
commit 3d2f8542ac
2 changed files with 3 additions and 3 deletions

View File

@ -129,11 +129,11 @@ class WP_Customize_Setting {
* @since 4.2.0 * @since 4.2.0
* @access public * @access public
* *
* @return bool If preview() has been called. * @return bool|void If preview() has been called.
*/ */
public function is_current_blog_previewed() { public function is_current_blog_previewed() {
if ( ! isset( $this->_previewed_blog_id ) ) { if ( ! isset( $this->_previewed_blog_id ) ) {
return false; return;
} }
return ( get_current_blog_id() === $this->_previewed_blog_id ); return ( get_current_blog_id() === $this->_previewed_blog_id );
} }

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.3-alpha-32765'; $wp_version = '4.3-alpha-32766';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.