Make WordPress Core


Ignore:
Timestamp:
09/13/2007 04:13:32 AM (17 years ago)
Author:
markjaquith
Message:

Plugins are not loaded at this point, so the wp_header_to_desc_array filter is useless

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/vars.php

    r6029 r6103  
    4545$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;
    4646
    47 $wp_header_to_desc = apply_filters( 'wp_header_to_desc_array', array(
     47$wp_header_to_desc = array(
    4848    100 => 'Continue',
    4949    101 => 'Switching Protocols',
     
    8989    504 => 'Gateway Timeout',
    9090    505 => 'HTTP Version Not Supported'
    91 ) );
     91);
    9292
    9393?>
Note: See TracChangeset for help on using the changeset viewer.