Add a comment for [27073] as someone will inevitably complain it is tricked by % in a string. see #25604.

git-svn-id: https://develop.svn.wordpress.org/trunk@27074 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-02-02 21:47:58 +00:00
parent 435df55864
commit e993ef0249
1 changed files with 1 additions and 0 deletions

View File

@ -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' );
}