Make WordPress Core


Ignore:
Timestamp:
03/20/2021 06:28:32 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Add a space before / character in some self-closing HTML tags.

While this has no effect on the code, it fixes a minor inconsistency with the rest of core.

Props laxman-prajapati.
Fixes #52870.

File:
1 edited

Legend:

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

    r50530 r50556  
    472472        <p>
    473473            <label class="screen-reader-text" for="search-users"><?php _e( 'Search Users' ); ?></label>
    474             <input type="search" name="s" value="" size="30" autocomplete="off" id="search-users"/>
     474            <input type="search" name="s" value="" size="30" autocomplete="off" id="search-users" />
    475475            <?php submit_button( __( 'Search Users' ), '', false, false, array( 'id' => 'submit_users' ) ); ?>
    476476        </p>
     
    480480        <p>
    481481            <label class="screen-reader-text" for="search-sites"><?php _e( 'Search Sites' ); ?></label>
    482             <input type="search" name="s" value="" size="30" autocomplete="off" id="search-sites"/>
     482            <input type="search" name="s" value="" size="30" autocomplete="off" id="search-sites" />
    483483            <?php submit_button( __( 'Search Sites' ), '', false, false, array( 'id' => 'submit_sites' ) ); ?>
    484484        </p>
Note: See TracChangeset for help on using the changeset viewer.