Make WordPress Core


Ignore:
Timestamp:
06/16/2015 08:00:15 PM (9 years ago)
Author:
wonderboymusic
Message:

if is a statment, not a function.

See #32444.

File:
1 edited

Legend:

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

    r24305 r32800  
    1212require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
    1313
    14 if( !is_multisite() )
     14if ( !is_multisite() )
    1515    die( 'Multisite support not enabled' );
    1616
     
    3131
    3232$mime = wp_check_filetype( $file );
    33 if( false === $mime[ 'type' ] && function_exists( 'mime_content_type' ) )
     33if ( false === $mime[ 'type' ] && function_exists( 'mime_content_type' ) )
    3434    $mime[ 'type' ] = mime_content_type( $file );
    3535
    36 if( $mime[ 'type' ] )
     36if ( $mime[ 'type' ] )
    3737    $mimetype = $mime[ 'type' ];
    3838else
     
    6161$client_etag = isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) ? stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) : false;
    6262
    63 if( ! isset( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) )
     63if ( ! isset( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) )
    6464    $_SERVER['HTTP_IF_MODIFIED_SINCE'] = false;
    6565
Note: See TracChangeset for help on using the changeset viewer.