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:
audrasjb 2022-09-02 06:51:13 +00:00
parent ae709d1d31
commit 16bc8d38a6
11 changed files with 15 additions and 15 deletions

View File

@ -1470,7 +1470,7 @@ function wp_print_media_templates() {
<# } #>
</dl>
<# if ( index % data.columns === data.columns - 1 ) { #>
<br style="clear: both;">
<br style="clear: both;" />
<# } #>
<# } ); #>
</div>

View File

@ -16,7 +16,7 @@
*
* @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.