Make WordPress Core


Ignore:
Timestamp:
03/26/2010 07:36:49 PM (15 years ago)
Author:
nacin
Message:

Remove trailing whites and double semicolons.

File:
1 edited

Legend:

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

    r13822 r13830  
    3939function wp_fix_server_vars() {
    4040    global $PHP_SELF;
    41    
     41
    4242    $default_server_values = array(
    4343        'SERVER_SOFTWARE' => '',
     
    4646
    4747    $_SERVER = array_merge( $default_server_values, $_SERVER );
    48    
     48
    4949    // Fix for IIS when running with PHP ISAPI
    5050    if ( empty( $_SERVER['REQUEST_URI'] ) || ( php_sapi_name() != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
Note: See TracChangeset for help on using the changeset viewer.