Changeset 13251 for trunk/wp-settings.php
- Timestamp:
- 02/20/2010 12:50:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r13214 r13251 58 58 // For an advanced caching plugin to use. Uses a static drop-in because you would only want one. 59 59 if ( WP_CACHE ) 60 @include WP_CONTENT_DIR . '/advanced-cache.php';60 @include( WP_CONTENT_DIR . '/advanced-cache.php' ); 61 61 62 62 // Define WP_LANG_DIR if not set. … … 80 80 require( ABSPATH . WPINC . '/plugin.php' ); 81 81 require( ABSPATH . WPINC . '/default-filters.php' ); 82 include_once( ABSPATH . WPINC . '/pomo/mo.php' );82 require( ABSPATH . WPINC . '/pomo/mo.php' ); 83 83 84 84 // Initialize multisite if enabled. … … 93 93 94 94 // Load the l18n library. 95 require _once( ABSPATH . WPINC . '/l10n.php' );95 require( ABSPATH . WPINC . '/l10n.php' ); 96 96 97 97 // Run the installer if WordPress is not installed. … … 132 132 // Load multisite-specific files. 133 133 if ( is_multisite() ) { 134 require _once( ABSPATH . WPINC . '/ms-functions.php' );135 require _once( ABSPATH . WPINC . '/ms-default-filters.php' );136 require _once( ABSPATH . WPINC . '/ms-deprecated.php' );134 require( ABSPATH . WPINC . '/ms-functions.php' ); 135 require( ABSPATH . WPINC . '/ms-default-filters.php' ); 136 require( ABSPATH . WPINC . '/ms-deprecated.php' ); 137 137 } 138 138 … … 152 152 if ( is_multisite() ) { 153 153 if ( true !== ( $file = ms_site_check() ) ) { 154 require _once( $file );154 require( $file ); 155 155 die(); 156 156 } … … 247 247 $locale_file = WP_LANG_DIR . "/$locale.php"; 248 248 if ( is_readable( $locale_file ) ) 249 require _once( $locale_file );249 require( $locale_file ); 250 250 unset($locale_file); 251 251 252 252 // Pull in locale data after loading text domain. 253 require _once( ABSPATH . WPINC . '/locale.php' );253 require( ABSPATH . WPINC . '/locale.php' ); 254 254 255 255 /**
Note: See TracChangeset
for help on using the changeset viewer.