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/meta-boxes.php

    r49183 r50556  
    639639                <p id="<?php echo $tax_name; ?>-add" class="category-add wp-hidden-child">
    640640                    <label class="screen-reader-text" for="new<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->add_new_item; ?></label>
    641                     <input type="text" name="new<?php echo $tax_name; ?>" id="new<?php echo $tax_name; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( $taxonomy->labels->new_item_name ); ?>" aria-required="true"/>
     641                    <input type="text" name="new<?php echo $tax_name; ?>" id="new<?php echo $tax_name; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( $taxonomy->labels->new_item_name ); ?>" aria-required="true" />
    642642                    <label class="screen-reader-text" for="new<?php echo $tax_name; ?>_parent">
    643643                        <?php echo $taxonomy->labels->parent_item_colon; ?>
Note: See TracChangeset for help on using the changeset viewer.