diff --git a/wp-includes/class-wp-customize-setting.php b/wp-includes/class-wp-customize-setting.php
index 3642532..f8f9ce0 100644
|
a
|
b
|
class WP_Customize_Setting { |
| 131 | 131 | * |
| 132 | 132 | * @return bool|null Returns null if preview() has not been called yet. |
| 133 | 133 | */ |
| 134 | 134 | public function is_current_blog_previewed() { |
| 135 | 135 | if ( ! isset( $this->_previewed_blog_id ) ) { |
| 136 | 136 | return null; |
| 137 | 137 | } |
| 138 | 138 | return ( get_current_blog_id() === $this->_previewed_blog_id ); |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | | protected $_original_value; |
| 142 | | |
| 143 | 141 | /** |
| 144 | 142 | * Original non-previewed value stored by the preview method. |
| 145 | 143 | * |
| 146 | 144 | * @see WP_Customize_Setting::preview() |
| 147 | 145 | * @since 4.1.1 |
| 148 | 146 | * @var mixed |
| 149 | 147 | */ |
| 150 | 148 | protected $_original_value; |
| 151 | 149 | |
| 152 | 150 | /** |