WordPress build repository browser

Changeset 54433

Timestamp:
11/26/2022 09:01:17 PM (20 months ago)
Author:
audrasjb
Message:

Coding Standards: Various brace indentation corrections.

Props mukesh27.
Fixes #57210.
See #56791.

Built from https://develop.svn.wordpress.org/trunk@54881

Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/export.php

    r53351 r54433  
    520520    <?php
    521521    if ( 'all' === $args['content'] ) {
    522         wxr_nav_menu_terms();}
     522        wxr_nav_menu_terms();
     523    }
    523524    ?>
    524525
  • trunk/wp-admin/includes/file.php

    r54424 r54433  
    23942394        <?php
    23952395        if ( ! defined( 'FTP_PASS' ) ) {
    2396             _e( 'This password will not be stored on the server.' );}
     2396            _e( 'This password will not be stored on the server.' );
     2397        }
    23972398        ?>
    23982399    </label>
  • trunk/wp-admin/options-discussion.php

    r52590 r54433  
    7272<?php
    7373if ( ! get_option( 'users_can_register' ) && is_multisite() ) {
    74     echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' );}
     74    echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' );
     75}
    7576?>
    7677</label>
  • trunk/wp-admin/theme-editor.php

    r53317 r54433  
    222222    echo $theme->display( 'Name' );
    223223    if ( $description ) {
    224         echo ': ' . $description;}
     224        echo ': ' . $description;
     225    }
    225226    ?>
    226227</h2>
  • trunk/wp-includes/feed-atom-comments.php

    r47019 r54433  
    9494            <?php
    9595            if ( get_comment_author_url() ) {
    96                 echo '<uri>' . get_comment_author_url() . '</uri>';}
     96                echo '<uri>' . get_comment_author_url() . '</uri>';
     97            }
    9798            ?>
    9899
  • trunk/wp-includes/theme-compat/header.php

    r48059 r54433  
    4444<?php
    4545if ( is_singular() ) {
    46     wp_enqueue_script( 'comment-reply' );}
     46    wp_enqueue_script( 'comment-reply' );
     47}
    4748?>
    4849
  • trunk/wp-includes/version.php

    r54430 r54433  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.2-alpha-54878';
     19$wp_version = '6.2-alpha-548';
    2020
    2121/**
  • trunk/wp-links-opml.php

    r52546 r54433  
    8484                            <?php
    8585                            if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) {
    86                                 echo $bookmark->link_updated;}
     86                                echo $bookmark->link_updated;
     87                            }
    8788                            ?>
    8889" />
Note: See TracChangeset for help on using the changeset viewer.