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-admin/edit-tag-form.php

    r50505 r50556  
    112112?>
    113113>
    114 <input type="hidden" name="action" value="editedtag"/>
    115 <input type="hidden" name="tag_ID" value="<?php echo esc_attr( $tag_ID ); ?>"/>
    116 <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>"/>
     114<input type="hidden" name="action" value="editedtag" />
     115<input type="hidden" name="tag_ID" value="<?php echo esc_attr( $tag_ID ); ?>" />
     116<input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" />
    117117<?php
    118118wp_original_referer_field( true, 'previous' );
Note: See TracChangeset for help on using the changeset viewer.