Bootstrap/Load: Remove special handling for REQUEST_TIME and REQUEST_TIME_FLOAT server values in wp_magic_quotes().

This was intended as a temporary fix until `add_magic_quotes()` is modified to leave non-string values untouched, which has now been done.

Follow-up to [47370], [48205].

See #48605.
Built from https://develop.svn.wordpress.org/trunk@48206


git-svn-id: http://core.svn.wordpress.org/trunk@47975 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-06-28 21:09:05 +00:00
parent d25cc189be
commit 8d7a19cdc2
2 changed files with 1 additions and 13 deletions

View File

@ -1008,18 +1008,6 @@ function wp_magic_quotes() {
$_COOKIE = add_magic_quotes( $_COOKIE );
$_SERVER = add_magic_quotes( $_SERVER );
/*
* Revert the type change to string for two indexes which should retain their proper type.
* Among other things, this preserves compatibility of WP with PHPUnit Code Coverage generation.
*/
if ( isset( $_SERVER['REQUEST_TIME'] ) ) {
$_SERVER['REQUEST_TIME'] = (int) $_SERVER['REQUEST_TIME'];
}
if ( isset( $_SERVER['REQUEST_TIME_FLOAT'] ) ) {
$_SERVER['REQUEST_TIME_FLOAT'] = (float) $_SERVER['REQUEST_TIME_FLOAT'];
}
// Force REQUEST to be GET + POST.
$_REQUEST = array_merge( $_GET, $_POST );
}

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-alpha-48205';
$wp_version = '5.5-alpha-48206';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.