Make WordPress Core


Ignore:
Timestamp:
06/30/2014 11:49:34 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Move ms-load.php and ms-default-constants.php inclusion back to ms-settings.php to avoid breaking WP-CLI.

Use require_once() to allow for ms-settings.php to be included multiple times while testing.

props jeremyfelt.
see #27884.

File:
1 edited

Legend:

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

    r28910 r28934  
    1010 * @since 3.0.0
    1111 */
     12
     13/** Include Multisite initialization functions */
     14require_once( ABSPATH . WPINC . '/ms-load.php' );
     15require_once( ABSPATH . WPINC . '/ms-default-constants.php' );
    1216
    1317if ( defined( 'SUNRISE' ) ) {
Note: See TracChangeset for help on using the changeset viewer.