mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Coding Standards: Add missing semicolon to some endif keywords.
See #52627. git-svn-id: https://develop.svn.wordpress.org/trunk@50560 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -426,11 +426,9 @@ switch ( $step ) {
|
||||
<tr>
|
||||
<th><?php _e( 'Password' ); ?></th>
|
||||
<td>
|
||||
<?php
|
||||
if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ) :
|
||||
?>
|
||||
<code><?php echo esc_html( $result['password'] ); ?></code><br />
|
||||
<?php endif ?>
|
||||
<?php if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ) : ?>
|
||||
<code><?php echo esc_html( $result['password'] ); ?></code><br />
|
||||
<?php endif; ?>
|
||||
<p><?php echo $result['password_message']; ?></p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user