diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php
index d46a410..7cf7365 100644
a
|
b
|
if ( ! function_exists( 'wp_safe_redirect' ) ) : |
1331 | 1331 | * } |
1332 | 1332 | * |
1333 | 1333 | * @since 2.3.0 |
1334 | | * @since 5.0.0 The return value from wp_redirect() is now passed on, and the `$x_redirect_by` parameter was added. |
| 1334 | * @since 5.0.3 Added passing the return from wp_redirect on. |
1335 | 1335 | * |
1336 | 1336 | * @param string $location The path or URL to redirect to. |
1337 | 1337 | * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily). |
… |
… |
if ( ! function_exists( 'wp_safe_redirect' ) ) : |
1350 | 1350 | * |
1351 | 1351 | * @param string $fallback_url The fallback URL to use by default. |
1352 | 1352 | * @param int $status The HTTP response status code to use. |
| 1353 | * @return bool $redirect False if the redirect was cancelled, true otherwise. |
1353 | 1354 | */ |
1354 | 1355 | $location = wp_validate_redirect( $location, apply_filters( 'wp_safe_redirect_fallback', admin_url(), $status ) ); |
1355 | 1356 | |