Changeset 19760 for trunk/wp-settings.php
- Timestamp:
- 01/26/2012 08:34:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r19758 r19760 71 71 require( ABSPATH . WPINC . '/class-wp-error.php' ); 72 72 require( ABSPATH . WPINC . '/plugin.php' ); 73 require( ABSPATH . WPINC . '/pomo/mo.php' ); 73 74 74 75 // Include the wpdb class and, if present, a db.php database drop-in. … … 82 83 wp_start_object_cache(); 83 84 84 // Load early WordPress files.85 // Attach the default filters. 85 86 require( ABSPATH . WPINC . '/default-filters.php' ); 86 require( ABSPATH . WPINC . '/pomo/mo.php' );87 87 88 88 // Initialize multisite if enabled. … … 101 101 102 102 // Load the L10n library. 103 require ( ABSPATH . WPINC . '/l10n.php' );103 require_once( ABSPATH . WPINC . '/l10n.php' ); 104 104 105 105 // Run the installer if WordPress is not installed. … … 269 269 270 270 // Pull in locale data after loading text domain. 271 require ( ABSPATH . WPINC . '/locale.php' );271 require_once( ABSPATH . WPINC . '/locale.php' ); 272 272 273 273 /**
Note: See TracChangeset
for help on using the changeset viewer.