Make WordPress Core


Ignore:
Timestamp:
01/11/2019 06:39:55 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace violations.

See #45934.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/load.php

    r44524 r44566  
    6969    if ( empty( $_SERVER['REQUEST_URI'] ) || ( PHP_SAPI != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
    7070
    71         // IIS Mod-Rewrite
    7271        if ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] ) ) {
     72            // IIS Mod-Rewrite
    7373            $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
    74         } // IIS Isapi_Rewrite
    75         elseif ( isset( $_SERVER['HTTP_X_REWRITE_URL'] ) ) {
     74        } elseif ( isset( $_SERVER['HTTP_X_REWRITE_URL'] ) ) {
     75            // IIS Isapi_Rewrite
    7676            $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
    7777        } else {
Note: See TracChangeset for help on using the changeset viewer.