mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Coding Standards: Various brace indentation corrections.
Props mukesh27. Fixes #57210. See #56791. git-svn-id: https://develop.svn.wordpress.org/trunk@54881 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
4c0e7708b4
commit
1111d2b9e6
@ -519,7 +519,8 @@ function export_wp( $args = array() ) {
|
||||
<?php endforeach; ?>
|
||||
<?php
|
||||
if ( 'all' === $args['content'] ) {
|
||||
wxr_nav_menu_terms();}
|
||||
wxr_nav_menu_terms();
|
||||
}
|
||||
?>
|
||||
|
||||
<?php
|
||||
|
||||
@ -2393,7 +2393,8 @@ function request_filesystem_credentials( $form_post, $type = '', $error = false,
|
||||
<input name="password" type="password" id="password" value="<?php echo $password_value; ?>"<?php disabled( defined( 'FTP_PASS' ) ); ?> />
|
||||
<?php
|
||||
if ( ! defined( 'FTP_PASS' ) ) {
|
||||
_e( 'This password will not be stored on the server.' );}
|
||||
_e( 'This password will not be stored on the server.' );
|
||||
}
|
||||
?>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
@ -71,7 +71,8 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||
<?php _e( 'Users must be registered and logged in to comment' ); ?>
|
||||
<?php
|
||||
if ( ! get_option( 'users_can_register' ) && is_multisite() ) {
|
||||
echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' );}
|
||||
echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' );
|
||||
}
|
||||
?>
|
||||
</label>
|
||||
<br />
|
||||
|
||||
@ -221,7 +221,8 @@ if ( $file_description !== $file_show ) {
|
||||
<?php
|
||||
echo $theme->display( 'Name' );
|
||||
if ( $description ) {
|
||||
echo ': ' . $description;}
|
||||
echo ': ' . $description;
|
||||
}
|
||||
?>
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
@ -93,7 +93,8 @@ while ( have_comments() ) :
|
||||
<name><?php comment_author_rss(); ?></name>
|
||||
<?php
|
||||
if ( get_comment_author_url() ) {
|
||||
echo '<uri>' . get_comment_author_url() . '</uri>';}
|
||||
echo '<uri>' . get_comment_author_url() . '</uri>';
|
||||
}
|
||||
?>
|
||||
|
||||
</author>
|
||||
|
||||
@ -43,7 +43,8 @@ _deprecated_file(
|
||||
|
||||
<?php
|
||||
if ( is_singular() ) {
|
||||
wp_enqueue_script( 'comment-reply' );}
|
||||
wp_enqueue_script( 'comment-reply' );
|
||||
}
|
||||
?>
|
||||
|
||||
<?php wp_head(); ?>
|
||||
|
||||
@ -83,7 +83,8 @@ foreach ( (array) $cats as $cat ) :
|
||||
<outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_url( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_url( $bookmark->link_url ); ?>" updated="
|
||||
<?php
|
||||
if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) {
|
||||
echo $bookmark->link_updated;}
|
||||
echo $bookmark->link_updated;
|
||||
}
|
||||
?>
|
||||
" />
|
||||
<?php
|
||||
|
||||
Loading…
Reference in New Issue
Block a user