Database: Hardening for `wpdb::prepare()`
Previously if you passed an array of values for placeholders, additional values could be passed as well. Now additional values will be ignored. Merges [41470] to 4.8 branch. Built from https://develop.svn.wordpress.org/branches/4.8@41471 git-svn-id: http://core.svn.wordpress.org/branches/4.8@41304 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3e77adc619
commit
109695b948
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8.2-alpha-41458';
|
$wp_version = '4.8.2-alpha-41471';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -1299,9 +1299,18 @@ class wpdb {
|
||||||
|
|
||||||
$args = func_get_args();
|
$args = func_get_args();
|
||||||
array_shift( $args );
|
array_shift( $args );
|
||||||
|
|
||||||
// If args were passed as an array (as in vsprintf), move them up
|
// If args were passed as an array (as in vsprintf), move them up
|
||||||
if ( isset( $args[0] ) && is_array($args[0]) )
|
if ( is_array( $args[0] ) && count( $args ) == 1 ) {
|
||||||
$args = $args[0];
|
$args = $args[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ( $args as $arg ) {
|
||||||
|
if ( ! is_scalar( $arg ) ) {
|
||||||
|
_doing_it_wrong( 'wpdb::prepare', sprintf( 'Unsupported value type (%s).', gettype( $arg ) ), '4.8.2' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$query = str_replace( "'%s'", '%s', $query ); // in case someone mistakenly already singlequoted it
|
$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 ); // doublequote unquoting
|
||||||
$query = preg_replace( '|(?<!%)%f|' , '%F', $query ); // Force floats to be locale unaware
|
$query = preg_replace( '|(?<!%)%f|' , '%F', $query ); // Force floats to be locale unaware
|
||||||
|
|
Loading…
Reference in New Issue