Changeset 21025 for trunk/wp-admin/includes/template.php
- Timestamp:
- 06/07/2012 10:05:01 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r20891 r21025 1673 1673 1674 1674 function _wp_admin_html_begin() { 1675 $admin_html_class = ( is_admin_bar_showing() ) ? 'wp-toolbar' : ''; 1675 1676 ?> 1676 1677 <!DOCTYPE html> 1677 1678 <!--[if IE 8]> 1678 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 " <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>1679 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1679 1680 <![endif]--> 1680 1681 <!--[if !(IE 8) ]><!--> 1681 <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>1682 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1682 1683 <!--<![endif]--> 1683 1684 <head>
Note: See TracChangeset
for help on using the changeset viewer.