X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/6c8f14c09105d0afa4c1574215c59b5021040e76..refs/tags/wordpress-3.5.1:/wp-includes/wp-db.php diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 391cfa4d..b3aa8f6d 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -987,10 +987,13 @@ class wpdb { * @return null|false|string Sanitized query string, null if there is no query, false if there is an error and string * if there was something to prepare */ - function prepare( $query, $args ) { + function prepare( $query, $args = null ) { if ( is_null( $query ) ) return; + if ( func_num_args() < 2 ) + _doing_it_wrong( 'wpdb::prepare', 'wpdb::prepare() requires at least two arguments.', '3.5' ); + $args = func_get_args(); array_shift( $args ); // If args were passed as an array (as in vsprintf), move them up