diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php
index ce22688db8..62f5c8eb66 100644
|
a
|
b
|
function _wp_admin_html_begin() { |
| 2332 | 2332 | @header( 'X-UA-Compatible: IE=edge' ); |
| 2333 | 2333 | } |
| 2334 | 2334 | |
| 2335 | | ?> |
| | 2335 | echo <<<HTML |
| 2336 | 2336 | <!DOCTYPE html> |
| 2337 | 2337 | <!--[if IE 8]> |
| 2338 | | <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" |
| 2339 | | <?php |
| | 2338 | <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 $admin_html_class" |
| | 2339 | HTML; |
| | 2340 | |
| 2340 | 2341 | /** |
| 2341 | 2342 | * Fires inside the HTML tag in the admin header. |
| 2342 | 2343 | * |
| … |
… |
function _wp_admin_html_begin() { |
| 2345 | 2346 | do_action( 'admin_xml_ns' ); |
| 2346 | 2347 | |
| 2347 | 2348 | language_attributes(); |
| 2348 | | ?> |
| 2349 | | > |
| | 2349 | |
| | 2350 | echo <<<HTML |
| | 2351 | > |
| 2350 | 2352 | <![endif]--> |
| 2351 | 2353 | <!--[if !(IE 8) ]><!--> |
| 2352 | | <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" |
| 2353 | | <?php |
| | 2354 | <html xmlns="http://www.w3.org/1999/xhtml" class="$admin_html_class" |
| | 2355 | HTML; |
| 2354 | 2356 | /** This action is documented in wp-admin/includes/template.php */ |
| 2355 | 2357 | do_action( 'admin_xml_ns' ); |
| 2356 | 2358 | |
| 2357 | 2359 | language_attributes(); |
| 2358 | | ?> |
| 2359 | | > |
| | 2360 | |
| | 2361 | echo <<<HTML |
| | 2362 | > |
| 2360 | 2363 | <!--<![endif]--> |
| | 2364 | HTML; |
| | 2365 | ?> |
| 2361 | 2366 | <head> |
| 2362 | 2367 | <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php echo get_option( 'blog_charset' ); ?>" /> |
| 2363 | 2368 | <?php |