Handle localized floats in $wpdb->prepare(). props kurtpayne. fixes #19861.

git-svn-id: https://develop.svn.wordpress.org/trunk@21161 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-06-28 19:57:31 +00:00
parent 27ba62eb39
commit 57eb45641e
1 changed files with 3 additions and 1 deletions

View File

@ -850,7 +850,8 @@ class wpdb {
* @return void
*/
function escape_by_ref( &$string ) {
$string = $this->_real_escape( $string );
if ( ! is_float( $string ) )
$string = $this->_real_escape( $string );
}
/**
@ -901,6 +902,7 @@ class wpdb {
$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( '%f' , '%F', $query ); // Force floats to be locale unaware
$query = preg_replace( '|(?<!%)%s|', "'%s'", $query ); // quote the strings, avoiding escaped strings like %%s
array_walk( $args, array( &$this, 'escape_by_ref' ) );
return @vsprintf( $query, $args );