Make WordPress Core

Ticket #25575: 25575.2.patch

File 25575.2.patch, 1.0 KB (added by azaozz, 12 years ago)
  • src/wp-admin/includes/template.php

     
    16901690        $admin_html_class = ( is_admin_bar_showing() ) ? 'wp-toolbar' : '';
    16911691?>
    16921692<!DOCTYPE html>
    1693 <!--[if IE 8]>
    1694 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
    1695 <![endif]-->
    1696 <!--[if !(IE 8) ]><!-->
    16971693<html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
    1698 <!--<![endif]-->
    16991694<head>
    17001695<?php
    17011696        if ( $is_IE ) {
     
    17061701        }
    17071702?>
    17081703<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
     1704<!--[if IE 8]>
     1705<script>document.documentElement.className += ' ie8';</script>
     1706<![endif]-->
     1707
    17091708<?php
    17101709}
    17111710