mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +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:
@@ -1438,7 +1438,7 @@ function wp_print_media_templates() {
|
||||
);
|
||||
?>
|
||||
</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 { #>
|
||||
<span class="name"><?php _e( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ); ?></span><br />
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user