From d323ea9e1874d7d5be64a01cd60c625fd5cda039 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Sun, 8 Oct 2017 09:25:55 +0000 Subject: [PATCH] Customize: Add missing word in error message about already published changesets. Introduced in [41626]. Fixes #42144. Built from https://develop.svn.wordpress.org/trunk@41790 git-svn-id: http://core.svn.wordpress.org/trunk@41624 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index cea28c620f..4b5ec333f0 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -2489,7 +2489,7 @@ final class WP_Customize_Manager { if ( 'publish' === $existing_status || 'trash' === $existing_status ) { return new WP_Error( 'changeset_already_published', - __( 'The previous set of changes already been published. Please try saving your current set of changes again.' ), + __( 'The previous set of changes has already been published. Please try saving your current set of changes again.' ), array( 'next_changeset_uuid' => wp_generate_uuid4(), ) diff --git a/wp-includes/version.php b/wp-includes/version.php index 009d911673..90c4933969 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta1-41789'; +$wp_version = '4.9-beta1-41790'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.