Make WordPress Core


Ignore:
Timestamp:
01/15/2010 10:25:40 PM (15 years ago)
Author:
ryan
Message:

Coding style cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r12732 r12734  
    6565include_once(ABSPATH . WPINC . '/pomo/mo.php');
    6666
    67 if( is_multisite() && SHORTINIT ) // stop most of WP being loaded, we just want the basics
     67if ( SHORTINIT ) // stop most of WP being loaded, we just want the basics
    6868    return false;
    6969
     
    111111wp_default_constants('wp_included');
    112112
    113 if( is_multisite() )
    114         ms_network_settings();
     113if ( is_multisite() )
     114    ms_network_settings();
    115115
    116116wp_default_constants('ms_network_settings_loaded');
     
    122122 * @since 3.0
    123123 */
    124 if( is_multisite() )
     124if ( is_multisite() )
    125125    ms_network_plugins();
    126126
     
    131131 * @since 3.0
    132132 */
    133 if( is_multisite() ) {
     133if ( is_multisite() ) {
    134134    ms_site_check();
    135135    ms_network_cookies();
Note: See TracChangeset for help on using the changeset viewer.