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. Built from https://develop.svn.wordpress.org/trunk@54062 git-svn-id: http://core.svn.wordpress.org/trunk@53621 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ae709d1d31
commit
16bc8d38a6
|
@ -345,7 +345,7 @@ if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br/>\n", $messages ) . '</p></div>';
|
echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br />\n", $messages ) . '</p></div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -306,7 +306,7 @@ class Custom_Background {
|
||||||
<td>
|
<td>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<?php wp_nonce_field( 'custom-background-remove', '_wpnonce-custom-background-remove' ); ?>
|
<?php wp_nonce_field( 'custom-background-remove', '_wpnonce-custom-background-remove' ); ?>
|
||||||
<?php submit_button( __( 'Remove Background Image' ), '', 'remove-background', false ); ?><br/>
|
<?php submit_button( __( 'Remove Background Image' ), '', 'remove-background', false ); ?><br />
|
||||||
<?php _e( 'This will remove the background image. You will not be able to restore any customizations.' ); ?>
|
<?php _e( 'This will remove the background image. You will not be able to restore any customizations.' ); ?>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
|
@ -320,7 +320,7 @@ class Custom_Background {
|
||||||
<td>
|
<td>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<?php wp_nonce_field( 'custom-background-reset', '_wpnonce-custom-background-reset' ); ?>
|
<?php wp_nonce_field( 'custom-background-reset', '_wpnonce-custom-background-reset' ); ?>
|
||||||
<?php submit_button( __( 'Restore Original Image' ), '', 'reset-background', false ); ?><br/>
|
<?php submit_button( __( 'Restore Original Image' ), '', 'reset-background', false ); ?><br />
|
||||||
<?php _e( 'This will restore the original background image. You will not be able to restore any customizations.' ); ?>
|
<?php _e( 'This will restore the original background image. You will not be able to restore any customizations.' ); ?>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -262,7 +262,7 @@ class WP_Filesystem_Base {
|
||||||
|
|
||||||
if ( $this->verbose ) {
|
if ( $this->verbose ) {
|
||||||
/* translators: 1: Folder to locate, 2: Folder to start searching from. */
|
/* translators: 1: Folder to locate, 2: Folder to start searching from. */
|
||||||
printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br/>\n", $folder, $base );
|
printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br />\n", $folder, $base );
|
||||||
}
|
}
|
||||||
|
|
||||||
$folder_parts = explode( '/', $folder );
|
$folder_parts = explode( '/', $folder );
|
||||||
|
@ -291,7 +291,7 @@ class WP_Filesystem_Base {
|
||||||
|
|
||||||
if ( $this->verbose ) {
|
if ( $this->verbose ) {
|
||||||
/* translators: %s: Directory name. */
|
/* translators: %s: Directory name. */
|
||||||
printf( "\n" . __( 'Changing to %s' ) . "<br/>\n", $newdir );
|
printf( "\n" . __( 'Changing to %s' ) . "<br />\n", $newdir );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only search for the remaining path tokens in the directory, not the full path again.
|
// Only search for the remaining path tokens in the directory, not the full path again.
|
||||||
|
@ -309,7 +309,7 @@ class WP_Filesystem_Base {
|
||||||
if ( isset( $files[ $last_path ] ) ) {
|
if ( isset( $files[ $last_path ] ) ) {
|
||||||
if ( $this->verbose ) {
|
if ( $this->verbose ) {
|
||||||
/* translators: %s: Directory name. */
|
/* translators: %s: Directory name. */
|
||||||
printf( "\n" . __( 'Found %s' ) . "<br/>\n", $base . $last_path );
|
printf( "\n" . __( 'Found %s' ) . "<br />\n", $base . $last_path );
|
||||||
}
|
}
|
||||||
|
|
||||||
return trailingslashit( $base . $last_path );
|
return trailingslashit( $base . $last_path );
|
||||||
|
|
|
@ -443,7 +443,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
||||||
echo "<span class='$action'>$link$sep</span>";
|
echo "<span class='$action'>$link$sep</span>";
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '</small></span><br/>';
|
echo '</small></span><br />';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -752,7 +752,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
||||||
$plugin_name = $plugin_file;
|
$plugin_name = $plugin_file;
|
||||||
|
|
||||||
if ( $plugin_file !== $plugin_data['Name'] ) {
|
if ( $plugin_file !== $plugin_data['Name'] ) {
|
||||||
$plugin_name .= '<br/>' . $plugin_data['Name'];
|
$plugin_name .= '<br />' . $plugin_data['Name'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant.
|
if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant.
|
||||||
|
|
|
@ -187,7 +187,7 @@ function display_setup_form( $error = null ) {
|
||||||
if ( has_action( 'blog_privacy_selector' ) ) {
|
if ( has_action( 'blog_privacy_selector' ) ) {
|
||||||
?>
|
?>
|
||||||
<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( 1, $blog_public ); ?> />
|
<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 ); ?> />
|
<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>
|
<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>
|
<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>
|
||||||
|
|
|
@ -197,7 +197,7 @@ if ( ! empty( $messages ) ) {
|
||||||
<legend class="screen-reader-text"><?php _e( 'Set site attributes' ); ?></legend>
|
<legend class="screen-reader-text"><?php _e( 'Set site attributes' ); ?></legend>
|
||||||
<?php foreach ( $attribute_fields as $field_key => $field_label ) : ?>
|
<?php foreach ( $attribute_fields as $field_key => $field_label ) : ?>
|
||||||
<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 ) ); ?> />
|
<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 ) ); ?> />
|
||||||
<?php echo $field_label; ?></label><br/>
|
<?php echo $field_label; ?></label><br />
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -181,7 +181,7 @@ else :
|
||||||
<td><fieldset><legend class="screen-reader-text"><span><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site visibility' ) : _e( 'Search engine visibility' ); ?> </span></legend>
|
<td><fieldset><legend class="screen-reader-text"><span><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site visibility' ) : _e( 'Search engine visibility' ); ?> </span></legend>
|
||||||
<?php if ( has_action( 'blog_privacy_selector' ) ) : ?>
|
<?php if ( has_action( 'blog_privacy_selector' ) ) : ?>
|
||||||
<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( '1', get_option( 'blog_public' ) ); ?> />
|
<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( '1', get_option( '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', get_option( 'blog_public' ) ); ?> />
|
<input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( '0', get_option( 'blog_public' ) ); ?> />
|
||||||
<label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
|
<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>
|
<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>
|
||||||
|
|
|
@ -1438,7 +1438,7 @@ function wp_print_media_templates() {
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</span>
|
</span>
|
||||||
<button type="button" class="button-link remove-setting remove-track"><?php _ex( 'Remove video track', 'media' ); ?></button><br/>
|
<button type="button" class="button-link remove-setting remove-track"><?php _ex( 'Remove video track', 'media' ); ?></button><br />
|
||||||
<# } ); #>
|
<# } ); #>
|
||||||
<# } else { #>
|
<# } else { #>
|
||||||
<span class="name"><?php _e( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ); ?></span><br />
|
<span class="name"><?php _e( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ); ?></span><br />
|
||||||
|
@ -1470,7 +1470,7 @@ function wp_print_media_templates() {
|
||||||
<# } #>
|
<# } #>
|
||||||
</dl>
|
</dl>
|
||||||
<# if ( index % data.columns === data.columns - 1 ) { #>
|
<# if ( index % data.columns === data.columns - 1 ) { #>
|
||||||
<br style="clear: both;">
|
<br style="clear: both;" />
|
||||||
<# } #>
|
<# } #>
|
||||||
<# } ); #>
|
<# } ); #>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.1-alpha-54061';
|
$wp_version = '6.1-alpha-54062';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -223,7 +223,7 @@ class WP_Widget_Archives extends WP_Widget {
|
||||||
<p>
|
<p>
|
||||||
<input class="checkbox" type="checkbox"<?php checked( $instance['dropdown'] ); ?> id="<?php echo $this->get_field_id( 'dropdown' ); ?>" name="<?php echo $this->get_field_name( 'dropdown' ); ?>" />
|
<input class="checkbox" type="checkbox"<?php checked( $instance['dropdown'] ); ?> id="<?php echo $this->get_field_id( 'dropdown' ); ?>" name="<?php echo $this->get_field_name( 'dropdown' ); ?>" />
|
||||||
<label for="<?php echo $this->get_field_id( 'dropdown' ); ?>"><?php _e( 'Display as dropdown' ); ?></label>
|
<label for="<?php echo $this->get_field_id( 'dropdown' ); ?>"><?php _e( 'Display as dropdown' ); ?></label>
|
||||||
<br/>
|
<br />
|
||||||
<input class="checkbox" type="checkbox"<?php checked( $instance['count'] ); ?> id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" />
|
<input class="checkbox" type="checkbox"<?php checked( $instance['count'] ); ?> id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" />
|
||||||
<label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Show post counts' ); ?></label>
|
<label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Show post counts' ); ?></label>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue