From 17828876faee439d4aa2310b0dc99765d1160e72 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 2 Feb 2014 21:48:13 +0000 Subject: [PATCH] Add a comment for [27073] as someone will inevitably complain it is tricked by % in a string. see #25604. Built from https://develop.svn.wordpress.org/trunk@27074 git-svn-id: http://core.svn.wordpress.org/trunk@26947 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/wp-db.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 215494fe6e..1a7ab30266 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -1053,6 +1053,7 @@ class wpdb { if ( is_null( $query ) ) return; + // This is not meant to be foolproof -- but it will catch obviously incorrect usage. if ( strpos( $query, '%' ) === false ) { _doing_it_wrong( 'wpdb::prepare', sprintf( __( 'The query argument of %s must have a placeholder.' ), 'wpdb::prepare()' ), '3.9' ); }