From 5fe8fa2b404e360f310a1c983b94c8a2c8a6dc20 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Tue, 11 Nov 2014 14:56:24 +0000 Subject: [PATCH] Correct grammar error in `WP_Date_Query` error message. Props Offereins. See #25834. Built from https://develop.svn.wordpress.org/trunk@30301 git-svn-id: http://core.svn.wordpress.org/trunk@30300 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/date.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/date.php b/wp-includes/date.php index de48625280..4ef6a7bafa 100644 --- a/wp-includes/date.php +++ b/wp-includes/date.php @@ -386,7 +386,7 @@ class WP_Date_Query { $error = sprintf( /* translators: Date query invalid date message: 1: invalid value, 2: type of value, 3: minimum valid value, 4: maximum valid value */ - __( 'Invalid value %1$s for %2$s. Expected value should between %3$s and %4$s.' ), + __( 'Invalid value %1$s for %2$s. Expected value should be between %3$s and %4$s.' ), '' . esc_html( $date_query[ $key ] ) . '', '' . esc_html( $key ) . '', '' . esc_html( $check['min'] ) . '', diff --git a/wp-includes/version.php b/wp-includes/version.php index 66eee2ce4d..ec866e2b26 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30300'; +$wp_version = '4.1-alpha-30301'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.