From db1ff3922473342820b6fff34e8690c63e9744d6 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Fri, 17 Feb 2017 10:15:44 +0000 Subject: [PATCH] I18N: Fix broken `sprintf()` after [40067]. See #39898. Built from https://develop.svn.wordpress.org/trunk@40072 git-svn-id: http://core.svn.wordpress.org/trunk@40009 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/customize/class-wp-customize-custom-css-setting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/customize/class-wp-customize-custom-css-setting.php b/wp-includes/customize/class-wp-customize-custom-css-setting.php index ad0c70caa1..163ecd364e 100644 --- a/wp-includes/customize/class-wp-customize-custom-css-setting.php +++ b/wp-includes/customize/class-wp-customize-custom-css-setting.php @@ -213,7 +213,7 @@ final class WP_Customize_Custom_CSS_Setting extends WP_Customize_Setting { if ( ! $this->validate_equal_characters( '"', $css ) ) { $validity->add( 'unequal_double_quotes', sprintf( /* translators: %s: " */ - __( 'Your double quotes %s are uneven. Make sure there is a closing %s for every opening %s.' ), + __( 'Your double quotes %1$s are uneven. Make sure there is a closing %1$s for every opening %1$s.' ), '"' ) ); $imbalanced = true; diff --git a/wp-includes/version.php b/wp-includes/version.php index fb1ebfc982..f39dbf9404 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40070'; +$wp_version = '4.8-alpha-40072'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.