Changeset 18982 for trunk/wp-admin/includes/template.php
- Timestamp:
- 10/17/2011 08:57:32 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r18977 r18982 1353 1353 $admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix); 1354 1354 1355 ?><!DOCTYPE html> 1356 <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); echo $GLOBALS['wp_htmltag_class'] . ' '; language_attributes(); ?>> 1357 <head> 1358 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 1355 _wp_admin_html_begin(); 1356 ?> 1359 1357 <title><?php bloginfo('name') ?> › <?php echo $title ?> — <?php _e('WordPress'); ?></title> 1360 1358 <?php … … 1630 1628 } 1631 1629 1630 function _wp_admin_html_begin() { 1631 ?> 1632 <!DOCTYPE html> 1633 <!--[if IE 8]> 1634 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1635 <![endif]--> 1636 <!--[if !(IE 8) ]><!--> 1637 <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1638 <!--<![endif]--> 1639 <head> 1640 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 1641 <?php 1642 } 1643 1632 1644 /** 1633 1645 * Initializes the new feature pointers.
Note: See TracChangeset
for help on using the changeset viewer.