Allow passing sustitution args to prepare() as an array. Makes building queries for prepare easier.

git-svn-id: http://svn.automattic.com/wordpress/trunk@10721 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-03-05 22:15:17 +00:00
parent 33de670823
commit 34d455832d
1 changed files with 3 additions and 0 deletions

View File

@ -502,6 +502,9 @@ class wpdb {
return;
$args = func_get_args();
$query = array_shift($args);
// If args were passed as an array, move them up
if ( is_array($args[0]) )
$args = $args[0];
$query = str_replace("'%s'", '%s', $query); // in case someone mistakenly already singlequoted it
$query = str_replace('"%s"', '%s', $query); // doublequote unquoting
$query = str_replace('%s', "'%s'", $query); // quote the strings