Changeset 42541 for trunk/src/wp-includes/class-wp-customize-manager.php
- Timestamp:
- 01/22/2018 06:48:51 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r42538 r42541 608 608 * 609 609 * @since 4.9.0 610 * @global string $pagenow 610 611 */ 611 612 public function establish_loaded_changeset() { 613 global $pagenow; 614 612 615 if ( empty( $this->_changeset_uuid ) ) { 613 616 $changeset_uuid = null; … … 638 641 } 639 642 640 $this->set_changeset_lock( $this->changeset_post_id() ); 643 if ( is_admin() && 'customize.php' === $pagenow ) { 644 $this->set_changeset_lock( $this->changeset_post_id() ); 645 } 641 646 } 642 647
Note: See TracChangeset
for help on using the changeset viewer.