Ticket #25575: 25575.patch
| File 25575.patch, 939 bytes (added by , 13 years ago) |
|---|
-
src/wp-admin/includes/template.php
1685 1685 } 1686 1686 1687 1687 function _wp_admin_html_begin() { 1688 global $is_IE; 1689 1688 1690 $admin_html_class = ( is_admin_bar_showing() ) ? 'wp-toolbar' : ''; 1689 1691 ?> 1690 1692 <!DOCTYPE html> … … 1695 1697 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1696 1698 <!--<![endif]--> 1697 1699 <head> 1700 <?php 1701 if ( $is_IE ) { 1702 // Lock the IE compatibility mode to the highest supported document mode of the browser. 1703 ?> 1704 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 1705 <?php 1706 } 1707 ?> 1698 1708 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 1699 1709 <?php 1700 1710 }