Make WordPress Core


Ignore:
Timestamp:
06/14/2015 06:42:50 PM (9 years ago)
Author:
jorbin
Message:

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

See #32732

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-setting.php

    r32732 r32766  
    130130     * @access public
    131131     *
    132      * @return bool If preview() has been called.
     132     * @return bool|void If preview() has been called.
    133133     */
    134134    public function is_current_blog_previewed() {
    135135        if ( ! isset( $this->_previewed_blog_id ) ) {
    136             return false;
     136            return;
    137137        }
    138138        return ( get_current_blog_id() === $this->_previewed_blog_id );
Note: See TracChangeset for help on using the changeset viewer.