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. Built from https://develop.svn.wordpress.org/trunk@50556 git-svn-id: http://core.svn.wordpress.org/trunk@50169 1a063a9b-81f0-0310-95a4-ce76da25c4cd
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