Make WordPress Core


Ignore:
Timestamp:
07/05/2019 05:20:52 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix all WordPress.WhiteSpace.PrecisionAlignment issues.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/template.php

    r45599 r45602  
    19511951</head>
    19521952    <?php
     1953    /**
     1954     * @global string $body_id
     1955     */
     1956    $admin_body_id = isset( $GLOBALS['body_id'] ) ? 'id="' . $GLOBALS['body_id'] . '" ' : '';
     1957
    19531958    /** This filter is documented in wp-admin/admin-header.php */
    19541959    $admin_body_classes = apply_filters( 'admin_body_class', '' );
    19551960    $admin_body_classes = ltrim( $admin_body_classes . ' ' . $admin_body_class );
    19561961    ?>
    1957 <body
    1958     <?php
    1959     /**
    1960      * @global string $body_id
    1961      */
    1962     if ( isset( $GLOBALS['body_id'] ) ) {
    1963         echo ' id="' . $GLOBALS['body_id'] . '"';
    1964     }
    1965     ?>
    1966  class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes; ?>">
     1962<body <?php echo $admin_body_id; ?>class="wp-admin wp-core-ui no-js iframe <?php echo $admin_body_classes; ?>">
    19671963<script type="text/javascript">
    19681964(function(){
Note: See TracChangeset for help on using the changeset viewer.