diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 87368a93cd..eba2143a2c 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -612,6 +612,7 @@ final class WP_Customize_Manager { $unpublished_changeset_posts = $this->get_changeset_posts( array( 'post_status' => array_diff( get_post_stati(), array( 'auto-draft', 'publish', 'trash', 'inherit', 'private' ) ), 'exclude_restore_dismissed' => false, + 'author' => 'any', 'posts_per_page' => 1, 'order' => 'DESC', 'orderby' => 'date', diff --git a/wp-includes/version.php b/wp-includes/version.php index 8895cf2da6..743ca93791 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41719'; +$wp_version = '4.9-alpha-41720'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.