Changeset 44717 for trunk/src/wp-settings.php
- Timestamp:
- 01/30/2019 11:00:30 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-settings.php
r44692 r44717 18 18 // Include files required for initialization. 19 19 require( ABSPATH . WPINC . '/load.php' ); 20 require( ABSPATH . WPINC . '/class-wp-paused-extensions-storage.php' );21 require( ABSPATH . WPINC . '/class-wp-fatal-error-handler.php' );22 require( ABSPATH . WPINC . '/error-protection.php' );23 20 require( ABSPATH . WPINC . '/default-constants.php' ); 24 21 require_once( ABSPATH . WPINC . '/plugin.php' ); 25 26 // Make sure we register the shutdown handler for fatal errors as soon as possible.27 wp_register_fatal_error_handler();28 22 29 23 /* … … 531 525 */ 532 526 do_action( 'wp_loaded' ); 533 534 /*535 * Store the fact that we could successfully execute the entire WordPress536 * lifecycle. This is used to skip the premature shutdown handler, as it cannot537 * be unregistered.538 */539 if ( ! defined( 'WP_EXECUTION_SUCCEEDED' ) ) {540 define( 'WP_EXECUTION_SUCCEEDED', true );541 }
Note: See TracChangeset
for help on using the changeset viewer.