mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-04 01:00:04 +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:
@@ -306,7 +306,7 @@ class Custom_Background {
|
||||
<td>
|
||||
<form method="post">
|
||||
<?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.' ); ?>
|
||||
</form>
|
||||
</td>
|
||||
@@ -320,7 +320,7 @@ class Custom_Background {
|
||||
<td>
|
||||
<form method="post">
|
||||
<?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.' ); ?>
|
||||
</form>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user