Make WordPress Core


Ignore:
Timestamp:
09/02/2022 06:49:17 AM (4 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/install.php

    r53749 r54062  
    188188                                                ?>
    189189                                                <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( 1, $blog_public ); ?> />
    190                                                 <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br/>
     190                                                <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br />
    191191                                                <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( 0, $blog_public ); ?> />
    192192                                                <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
Note: See TracChangeset for help on using the changeset viewer.