diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index a95085e109..bc215fef56 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -607,8 +607,11 @@ final class WP_Customize_Manager { * enabled, then a new UUID will be generated. * * @since 4.9.0 + * @global string $pagenow */ public function establish_loaded_changeset() { + global $pagenow; + if ( empty( $this->_changeset_uuid ) ) { $changeset_uuid = null; @@ -637,7 +640,9 @@ final class WP_Customize_Manager { $this->_changeset_uuid = $changeset_uuid; } - $this->set_changeset_lock( $this->changeset_post_id() ); + if ( is_admin() && 'customize.php' === $pagenow ) { + $this->set_changeset_lock( $this->changeset_post_id() ); + } } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 50d7e060f0..ab5c71922c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42540'; +$wp_version = '5.0-alpha-42541'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.