Changeset 44962
- Timestamp:
- 03/21/2019 04:02:05 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-settings.php
r44808 r44962 18 18 // Include files required for initialization. 19 19 require( ABSPATH . WPINC . '/load.php' ); 20 require( ABSPATH . WPINC . '/class-wp-fatal-error-handler.php' ); 21 require( ABSPATH . WPINC . '/error-protection.php' ); 20 22 require( ABSPATH . WPINC . '/default-constants.php' ); 21 23 require_once( ABSPATH . WPINC . '/plugin.php' ); 24 25 // Make sure we register the shutdown handler for fatal errors as soon as possible. 26 wp_register_fatal_error_handler(); 22 27 23 28 /* … … 529 534 */ 530 535 do_action( 'wp_loaded' ); 536 537 /* 538 * Store the fact that we could successfully execute the entire WordPress 539 * lifecycle. This is used to skip the premature shutdown handler, as it cannot 540 * be unregistered. 541 */ 542 if ( ! defined( 'WP_EXECUTION_SUCCEEDED' ) ) { 543 define( 'WP_EXECUTION_SUCCEEDED', true ); 544 }
Note: See TracChangeset
for help on using the changeset viewer.