Make WordPress Core


Ignore:
Timestamp:
05/26/2020 09:35:34 AM (5 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-includes/pluggable.php

    r47808 r47855  
    10491049            if ( 0 === strpos( $_SERVER['REQUEST_URI'], 'http' ) ) {
    10501050                wp_redirect( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) );
    1051                 exit();
     1051                exit;
    10521052            } else {
    10531053                wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
    1054                 exit();
     1054                exit;
    10551055            }
    10561056        }
     
    10801080                if ( 0 === strpos( $_SERVER['REQUEST_URI'], 'http' ) ) {
    10811081                    wp_redirect( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) );
    1082                     exit();
     1082                    exit;
    10831083                } else {
    10841084                    wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
    1085                     exit();
     1085                    exit;
    10861086                }
    10871087            }
     
    10981098
    10991099        wp_redirect( $login_url );
    1100         exit();
     1100        exit;
    11011101    }
    11021102endif;
Note: See TracChangeset for help on using the changeset viewer.