Changeset 41741 for trunk/src/wp-admin/includes/misc.php
- Timestamp:
- 10/04/2017 06:24:17 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.