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:
parent
27ba62eb39
commit
57eb45641e
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user