Make WordPress Core


Ignore:
Timestamp:
05/26/2020 09:35:34 AM (6 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Fix instances of Generic.WhiteSpace.ArbitraryParenthesesSpacing.FoundEmpty.

See #49542.

File:
1 edited

Legend:

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

    r47853 r47855  
    124124                <?php
    125125                require_once ABSPATH . 'wp-admin/admin-footer.php';
    126                 exit();
     126                exit;
    127127        } elseif ( array_key_exists( $_GET['action'], $manage_actions ) ) {
    128128                $action = $_GET['action'];
     
    211211                                                                <?php
    212212                                                                require_once ABSPATH . 'wp-admin/admin-footer.php';
    213                                                                 exit();
     213                                                                exit;
    214214                                                        break;
    215215
     
    233233
    234234                                        wp_safe_redirect( $redirect_to );
    235                                         exit();
     235                                        exit;
    236236                                }
    237237                        } else {
     
    296296        if ( ! empty( $updated_action ) ) {
    297297                wp_safe_redirect( add_query_arg( array( 'updated' => $updated_action ), wp_get_referer() ) );
    298                 exit();
     298                exit;
    299299        }
    300300}
Note: See TracChangeset for help on using the changeset viewer.