Make WordPress Core


Ignore:
Timestamp:
02/13/2010 11:09:54 PM (15 years ago)
Author:
ryan
Message:

Add ability to query by domain and/or path to get_blog_details(). Improve blog details caching. Use get_blog_details() in ms-settings.php so queries are cached. see #11644

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r13125 r13126  
    6060wp_set_lang_dir();
    6161
    62 // Include early WordPress files.
     62// Load early WordPress files.
    6363require( ABSPATH . WPINC . '/compat.php' );
    6464require( ABSPATH . WPINC . '/functions.php' );
     
    7373// Start the WordPress object cache, or an external object cache if the drop-in is present.
    7474wp_start_object_cache();
     75
     76// Load early WordPress files.
     77require( ABSPATH . WPINC . '/plugin.php' );
     78require( ABSPATH . WPINC . '/default-filters.php' );
     79include_once( ABSPATH . WPINC . '/pomo/mo.php' );
    7580
    7681// Initialize multisite if enabled.
     
    7984    require( ABSPATH . WPINC . '/ms-settings.php' );
    8085}
    81 
    82 // Load early WordPress files.
    83 require( ABSPATH . WPINC . '/plugin.php' );
    84 require( ABSPATH . WPINC . '/default-filters.php' );
    85 include_once( ABSPATH . WPINC . '/pomo/mo.php' );
    8686
    8787// Stop most of WordPress from being loaded if we just want the basics.
Note: See TracChangeset for help on using the changeset viewer.