Make WordPress Core


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

    r52428 r54062  
    182182<?php if ( has_action( 'blog_privacy_selector' ) ) : ?>
    183183    <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( '1', get_option( 'blog_public' ) ); ?> />
    184     <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br/>
     184    <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br />
    185185    <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( '0', get_option( 'blog_public' ) ); ?> />
    186186    <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
Note: See TracChangeset for help on using the changeset viewer.