Make WordPress Core

Ticket #43534: 43534.diff

File 43534.diff, 1.6 KB (added by chetan200891, 8 years ago)

Created patch to fix indentation and line breaks.

  • src/wp-admin/includes/template.php

    diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php
    index 66fb943..9cdfcce 100644
    a b function _wp_admin_html_begin() { 
    21652165?>
    21662166<!DOCTYPE html>
    21672167<!--[if IE 8]>
    2168 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>"
    2169                                                                                                                                         <?php
    2170                                                                                                                                         /**
    2171                                                                                                                                          * Fires inside the HTML tag in the admin header.
    2172                                                                                                                                          *
    2173                                                                                                                                          * @since 2.2.0
    2174                                                                                                                                          */
    2175                                                                                                                                         do_action( 'admin_xml_ns' );
     2168<html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php
     2169/**
     2170 * Fires inside the HTML tag in the admin header.
     2171 *
     2172 * @since 2.2.0
     2173 */
     2174do_action( 'admin_xml_ns' );
    21762175?>
    2177         <?php language_attributes(); ?>>
     2176<?php language_attributes(); ?>>
    21782177<![endif]-->
    21792178<!--[if !(IE 8) ]><!-->
    2180 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>"
    2181                                                                                                                                 <?php
    2182                                                                                                                                 /** This action is documented in wp-admin/includes/template.php */
    2183                                                                                                                                 do_action( 'admin_xml_ns' );
     2179<html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php
     2180/** This action is documented in wp-admin/includes/template.php */
     2181do_action( 'admin_xml_ns' );
    21842182?>
    2185         <?php language_attributes(); ?>>
     2183<?php language_attributes(); ?>>
    21862184<!--<![endif]-->
    21872185<head>
    21882186<meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php echo get_option( 'blog_charset' ); ?>" />