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
This commit is contained in:
parent
1478135c46
commit
d323ea9e18
|
@ -2489,7 +2489,7 @@ final class WP_Customize_Manager {
|
||||||
if ( 'publish' === $existing_status || 'trash' === $existing_status ) {
|
if ( 'publish' === $existing_status || 'trash' === $existing_status ) {
|
||||||
return new WP_Error(
|
return new WP_Error(
|
||||||
'changeset_already_published',
|
'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(
|
array(
|
||||||
'next_changeset_uuid' => wp_generate_uuid4(),
|
'next_changeset_uuid' => wp_generate_uuid4(),
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue