Fix the X-UA-Compatible header for IE8, fixes #25575

Built from https://develop.svn.wordpress.org/trunk@26089


git-svn-id: http://core.svn.wordpress.org/trunk@26007 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2013-11-11 18:02:10 +00:00
parent 3b66710dae
commit 541d22e18d
1 changed files with 4 additions and 8 deletions

View File

@ -1688,6 +1688,10 @@ function _wp_admin_html_begin() {
global $is_IE;
$admin_html_class = ( is_admin_bar_showing() ) ? 'wp-toolbar' : '';
if ( $is_IE )
@header('X-UA-Compatible: IE=edge');
?>
<!DOCTYPE html>
<!--[if IE 8]>
@ -1697,14 +1701,6 @@ function _wp_admin_html_begin() {
<html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<?php
if ( $is_IE ) {
// Lock the IE compatibility mode to the highest supported document mode by the browser.
?>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<?php
}
?>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
<?php
}