From 65073950d30fec7e8a4c73e250d70224e12937fd Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Thu, 3 Jan 2019 18:10:33 +0000 Subject: [PATCH] Docs: Update `since` tag for `X-Redirect-By` header additions. See [42408-42409], [42633], [42647]. Fixes #42313. git-svn-id: https://develop.svn.wordpress.org/trunk@44386 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/pluggable.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index d46a410638..46e11055ea 100644 --- a/src/wp-includes/pluggable.php +++ b/src/wp-includes/pluggable.php @@ -1193,7 +1193,7 @@ if ( ! function_exists( 'wp_redirect' ) ) : * } * * @since 1.5.1 - * @since 5.0.0 The `$x_redirect_by` parameter was added. + * @since 5.1.0 The `$x_redirect_by` parameter was added. * * @global bool $is_IIS * @@ -1240,7 +1240,7 @@ if ( ! function_exists( 'wp_redirect' ) ) : * * Allows applications to identify themselves when they're doing a redirect. * - * @since 5.0.0 + * @since 5.1.0 * * @param string $x_redirect_by The application doing the redirect. * @param int $status Status code to use. @@ -1331,7 +1331,7 @@ if ( ! function_exists( 'wp_safe_redirect' ) ) : * } * * @since 2.3.0 - * @since 5.0.0 The return value from wp_redirect() is now passed on, and the `$x_redirect_by` parameter was added. + * @since 5.1.0 The return value from wp_redirect() is now passed on, and the `$x_redirect_by` parameter was added. * * @param string $location The path or URL to redirect to. * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily).