Make WordPress Core


Ignore:
Timestamp:
02/03/2010 06:19:56 PM (15 years ago)
Author:
wpmuguru
Message:

improvements to custom content dir support, props nacin, see #11742

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-default-constants.php

    r12921 r12936  
    5555                    define('COOKIE_DOMAIN', '.' . $current_site->cookie_domain);
    5656            break;
     57        case 'ms-files' :
     58            /**
     59             * Optional support for X-Sendfile header
     60             * @since 3.0.0
     61             */
     62            if ( !defined( 'WPMU_SENDFILE' ) )
     63                define( 'WPMU_SENDFILE', false );
     64            /**
     65             * Optional support for X-Accel-Redirect header
     66             * @since 3.0.0
     67             */
     68            if ( !defined( 'WPMU_ACCEL_REDIRECT' ) )
     69                define( 'WPMU_ACCEL_REDIRECT', false );
     70            break;
    5771    }
    5872}
Note: See TracChangeset for help on using the changeset viewer.