Changeset 30754 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 12/06/2014 09:31:41 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r30730 r30754 1586 1586 ?> 1587 1587 </head> 1588 <?php /** This filter is documented in wp-admin/admin-header.php */ ?> 1589 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo apply_filters( 'admin_body_class', '' ) . ' ' . $admin_body_class; ?>"> 1588 <?php 1589 /** This filter is documented in wp-admin/admin-header.php */ 1590 $admin_body_classes = apply_filters( 'admin_body_class', '' ); 1591 ?> 1592 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes . ' ' . $admin_body_class; ?>"> 1590 1593 <script type="text/javascript"> 1591 1594 //<![CDATA[ … … 1869 1872 @header('X-UA-Compatible: IE=edge'); 1870 1873 1871 /**1872 * Fires inside the HTML tag in the admin header.1873 *1874 * @since 2.2.01875 */1876 1874 ?> 1877 1875 <!DOCTYPE html> 1878 1876 <!--[if IE 8]> 1879 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php do_action( 'admin_xml_ns' ); ?> <?php language_attributes(); ?>> 1877 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php 1878 /** 1879 * Fires inside the HTML tag in the admin header. 1880 * 1881 * @since 2.2.0 1882 */ 1883 do_action( 'admin_xml_ns' ); 1884 ?> <?php language_attributes(); ?>> 1880 1885 <![endif]--> 1881 1886 <!--[if !(IE 8) ]><!--> 1882 <?php /** This action is documented in wp-admin/includes/template.php */ ?> 1883 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php do_action( 'admin_xml_ns' ); ?> <?php language_attributes(); ?>> 1887 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php 1888 /** This action is documented in wp-admin/includes/template.php */ 1889 do_action( 'admin_xml_ns' ); 1890 ?> <?php language_attributes(); ?>> 1884 1891 <!--<![endif]--> 1885 1892 <head>
Note: See TracChangeset
for help on using the changeset viewer.