Make WordPress Core


Ignore:
Timestamp:
09/02/2022 06:49:17 AM (2 years ago)
Author:
audrasjb
Message:

Coding Standards: Use a consistent markup for line break tags across Core.

This changeset replaces <br/> with <br /> on various places, as per WordPress Coding Standards.
See https://developer.wordpress.org/coding-standards/wordpress-coding-standards/html/#self-closing-elements

Props haritpanchal, costdev, audrasjb.
Fixes #56457.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/site-info.php

    r53455 r54062  
    198198            <?php foreach ( $attribute_fields as $field_key => $field_label ) : ?>
    199199                <label><input type="checkbox" name="blog[<?php echo $field_key; ?>]" value="1" <?php checked( (bool) $details->$field_key, true ); ?> <?php disabled( ! in_array( (int) $details->$field_key, array( 0, 1 ), true ) ); ?> />
    200                 <?php echo $field_label; ?></label><br/>
     200                <?php echo $field_label; ?></label><br />
    201201            <?php endforeach; ?>
    202202            <fieldset>
Note: See TracChangeset for help on using the changeset viewer.