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

git-svn-id: https://develop.svn.wordpress.org/trunk@6103 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2007-09-13 04:13:32 +00:00
parent e0b73aa55a
commit f5821a6ff7
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ $is_IE = ( $is_macIE || $is_winIE );
$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;
$wp_header_to_desc = apply_filters( 'wp_header_to_desc_array', array(
$wp_header_to_desc = array(
100 => 'Continue',
101 => 'Switching Protocols',
@ -88,6 +88,6 @@ $wp_header_to_desc = apply_filters( 'wp_header_to_desc_array', array(
503 => 'Service Unavailable',
504 => 'Gateway Timeout',
505 => 'HTTP Version Not Supported'
) );
);
?>