mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-04 20:54:29 +00:00
Coding Standards: Add a space before / character in some self-closing HTML tags.
While this has no effect on the code, it fixes a minor inconsistency with the rest of core. Props laxman-prajapati. Fixes #52870. git-svn-id: https://develop.svn.wordpress.org/trunk@50556 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -158,8 +158,8 @@ function list_core_update( $update ) {
|
||||
wp_nonce_field( 'upgrade-core' );
|
||||
|
||||
echo '<p>';
|
||||
echo '<input name="version" value="' . esc_attr( $update->current ) . '" type="hidden"/>';
|
||||
echo '<input name="locale" value="' . esc_attr( $update->locale ) . '" type="hidden"/>';
|
||||
echo '<input name="version" value="' . esc_attr( $update->current ) . '" type="hidden" />';
|
||||
echo '<input name="locale" value="' . esc_attr( $update->locale ) . '" type="hidden" />';
|
||||
if ( $show_buttons ) {
|
||||
if ( $first_pass ) {
|
||||
submit_button( $submit, $current ? '' : 'primary regular', 'upgrade', false );
|
||||
|
||||
Reference in New Issue
Block a user