Make WordPress Core


Ignore:
Timestamp:
03/21/2021 01:03:14 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Add missing semicolon to some endif keywords.

See #52627.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/install.php

    r48172 r50560  
    427427                <th><?php _e( 'Password' ); ?></th>
    428428                <td>
    429                         <?php
    430                         if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ) :
    431                                 ?>
    432                         <code><?php echo esc_html( $result['password'] ); ?></code><br />
    433                 <?php endif ?>
     429                        <?php if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ) : ?>
     430                                <code><?php echo esc_html( $result['password'] ); ?></code><br />
     431                        <?php endif; ?>
    434432                        <p><?php echo $result['password_message']; ?></p>
    435433                </td>
Note: See TracChangeset for help on using the changeset viewer.