Ticket #25575: 25575.2.patch
| File 25575.2.patch, 1.0 KB (added by , 12 years ago) |
|---|
-
src/wp-admin/includes/template.php
1690 1690 $admin_html_class = ( is_admin_bar_showing() ) ? 'wp-toolbar' : ''; 1691 1691 ?> 1692 1692 <!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) ]><!-->1697 1693 <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]-->1699 1694 <head> 1700 1695 <?php 1701 1696 if ( $is_IE ) { … … 1706 1701 } 1707 1702 ?> 1708 1703 <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 1709 1708 <?php 1710 1709 } 1711 1710