From 0bc86bc2201bee9f6b405bb3b77f8c3be988cbee Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 18 Dec 2017 01:04:52 +0000 Subject: [PATCH] Canonical: Introduce `x_redirect_by` filter that allows applications to identify themselves via `X-Redirect-By` header when they're doing a redirect. Props joostdevalk. Fixes #42313. Built from https://develop.svn.wordpress.org/trunk@42408 git-svn-id: http://core.svn.wordpress.org/trunk@42237 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 16 ++++++++++++++++ wp-includes/version.php | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index b50772b99c..c41fd2458b 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1226,6 +1226,22 @@ if ( ! function_exists( 'wp_redirect' ) ) : status_header( $status ); // This causes problems on IIS and some FastCGI setups } + /** + * Filters the X-Redirect-By header. + * + * Allows applications to identify themselves when they're doing a redirect. + * + * @since 5.0.0 + * + * @param string $x_redirect_by The application doing the redirect. + * @param int $status Status code to use. + * @param string $location The path to redirect to. + */ + $x_redirect_by = apply_filters( 'x_redirect_by', 'WordPress', $status, $location ); + if ( is_string( $x_redirect_by ) ) { + header( sprintf( "X-Redirect-By: %s", $x_redirect_by ) ); + } + header( "Location: $location", true, $status ); return true; diff --git a/wp-includes/version.php b/wp-includes/version.php index e0795543ca..8a8ddbbe4d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42407'; +$wp_version = '5.0-alpha-42408'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.