Changeset 13806 for trunk/wp-includes/functions.php
- Timestamp:
- 03/23/2010 07:13:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r13797 r13806 4083 4083 return false; 4084 4084 } 4085 4086 /** 4087 * Send a HTTP header to disable content type sniffing in browsers which support it. 4088 * 4089 * @link http://blogs.msdn.com/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx 4090 * @link http://src.chromium.org/viewvc/chrome?view=rev&revision=6985 4091 * 4092 * @since 3.0.0 4093 * @return none 4094 */ 4095 function send_nosniff_header() { 4096 @header( 'X-Content-Type-Options: nosniff' ); 4097 } 4098 4099 ?>
Note: See TracChangeset
for help on using the changeset viewer.