mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-09 15:14:37 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@54062 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -187,7 +187,7 @@ function display_setup_form( $error = null ) {
|
||||
if ( has_action( 'blog_privacy_selector' ) ) {
|
||||
?>
|
||||
<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( 1, $blog_public ); ?> />
|
||||
<label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br/>
|
||||
<label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br />
|
||||
<input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( 0, $blog_public ); ?> />
|
||||
<label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
|
||||
<p class="description"><?php _e( 'Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.' ); ?></p>
|
||||
|
||||
Reference in New Issue
Block a user