Changeset 41741
- Timestamp:
- 10/04/2017 06:24:17 PM (7 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/admin-filters.php
r41254 r41741 39 39 40 40 // Misc hooks. 41 add_action( 'admin_init', 'wp_admin_headers' ); 42 add_action( 'login_init', 'wp_admin_headers' ); 41 43 add_action( 'admin_head', 'wp_admin_canonical_url' ); 42 44 add_action( 'admin_head', 'wp_color_scheme_settings' ); -
trunk/src/wp-admin/includes/misc.php
r41254 r41741 921 921 922 922 /** 923 * Send a referrer policy header so referrers are not sent externally from administration screens. 924 * 925 * @since 4.9.0 926 */ 927 function wp_admin_headers() { 928 $policy = 'same-origin'; 929 930 /** 931 * Filters the admin referrer policy header value. Default 'same-origin'. 932 * 933 * @since 4.9.0 934 * @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy 935 * 936 * @param string $policy The referrer policy header value. 937 */ 938 $policy = apply_filters( 'admin_referrer_policy', $policy ); 939 940 header( sprintf( 'Referrer-Policy: %s', $policy ) ); 941 } 942 943 /** 923 944 * Outputs JS that reloads the page if the user navigated to it with the Back or Forward button. 924 945 *
Note: See TracChangeset
for help on using the changeset viewer.