From 24d9f5a568bca1636ff642a88befb9d007c37cb8 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Mon, 18 Apr 2022 10:16:20 +0000 Subject: [PATCH] Docs: Update MDN link in `send_frame_options_header()` docblock. The X-Frame-Options MDN documentation has been moved to `/docs/Web/HTTP/Headers/X-Frame-Options`. This changeset updates the link accordingly. See #54729. git-svn-id: https://develop.svn.wordpress.org/trunk@53202 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 26a538a74c..1b8d788354 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -6872,7 +6872,7 @@ function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = ar * * @since 3.1.3 * - * @see https://developer.mozilla.org/en/the_x-frame-options_response_header + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options */ function send_frame_options_header() { header( 'X-Frame-Options: SAMEORIGIN' );