Make WordPress Core


Ignore:
Timestamp:
03/20/2021 06:28:32 PM (5 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-includes/admin-bar.php

    r50504 r50556  
    10641064    $form .= '<input class="adminbar-input" name="s" id="adminbar-search" type="text" value="" maxlength="150" />';
    10651065    $form .= '<label for="adminbar-search" class="screen-reader-text">' . __( 'Search' ) . '</label>';
    1066     $form .= '<input type="submit" class="adminbar-button" value="' . __( 'Search' ) . '"/>';
     1066    $form .= '<input type="submit" class="adminbar-button" value="' . __( 'Search' ) . '" />';
    10671067    $form .= '</form>';
    10681068
Note: See TracChangeset for help on using the changeset viewer.