Plugins are not loaded at this point, so the wp_header_to_desc_array filter is useless
git-svn-id: http://svn.automattic.com/wordpress/trunk@6103 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7bbd23f3c6
commit
1cae6a8691
|
@ -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'
|
||||
) );
|
||||
);
|
||||
|
||||
?>
|
Loading…
Reference in New Issue