From 8b4a8b6c1504794ce87846820f984d9b254e2f39 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 11 Oct 2017 08:35:47 +0000 Subject: [PATCH] Database: Add translators comment for error message in `wpdb::prepare()`. Props felipeelia. Fixes #42142. Built from https://develop.svn.wordpress.org/trunk@41828 git-svn-id: http://core.svn.wordpress.org/trunk@41662 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/wp-db.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 3164366b29..1d09cf55e2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta1-41827'; +$wp_version = '4.9-beta1-41828'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index a5903b4187..3f7d5ac8b2 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -1261,6 +1261,7 @@ class wpdb { if ( count ( $args ) !== $placeholders ) { wp_load_translations_early(); _doing_it_wrong( 'wpdb::prepare', + /* translators: 1: number of placeholders, 2: number of arguments passed */ sprintf( __( 'The query does not contain the correct number of placeholders (%1$d) for the number of arguments passed (%2$d).' ), $placeholders, count( $args ) ),