From b5bf852dfef20cd56d61f7461d1c0f1c92d006ee Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 4 Nov 2019 12:59:01 +0000 Subject: [PATCH] Build/Test Tools: Adjust the test for `wp_redirect()` status codes added in [46641] per the documentation and coding standards. Move the test to a more appropriate place for consistency with `wp_sanitize_redirect()` and `wp_validate_redirect()` tests. See #44317. Built from https://develop.svn.wordpress.org/trunk@46649 git-svn-id: http://core.svn.wordpress.org/trunk@46449 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index fb44dc35d5..3b81242f4d 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1251,7 +1251,7 @@ if ( ! function_exists( 'wp_redirect' ) ) : return false; } - if ( 300 > $status || 399 < $status ) { + if ( $status < 300 || 399 < $status ) { wp_die( __( 'HTTP redirect status code must be a redirection code, 3xx.' ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index cc37ac8da2..05793da085 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-46648'; +$wp_version = '5.4-alpha-46649'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.