WP: Don't attempt to convert multiple-nested arrays to a string in WP->parse_request().

See #14330.
Fixes #42752.

Built from https://develop.svn.wordpress.org/trunk@42419


git-svn-id: http://core.svn.wordpress.org/trunk@42250 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dion Hulse 2017-12-22 03:18:47 +00:00
parent 699025a785
commit 02d04f2b5c
2 changed files with 2 additions and 2 deletions

View File

@ -308,7 +308,7 @@ class WP {
$this->query_vars[ $wpvar ] = (string) $this->query_vars[ $wpvar ]; $this->query_vars[ $wpvar ] = (string) $this->query_vars[ $wpvar ];
} else { } else {
foreach ( $this->query_vars[ $wpvar ] as $vkey => $v ) { foreach ( $this->query_vars[ $wpvar ] as $vkey => $v ) {
if ( ! is_object( $v ) ) { if ( is_scalar( $v ) ) {
$this->query_vars[ $wpvar ][ $vkey ] = (string) $v; $this->query_vars[ $wpvar ][ $vkey ] = (string) $v;
} }
} }

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.0-alpha-42417'; $wp_version = '5.0-alpha-42419';
/** /**
* 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.