Changeset 44671 for trunk/src/wp-includes/class-wp-shutdown-handler.php
- Timestamp:
- 01/21/2019 07:09:23 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-shutdown-handler.php
r44624 r44671 137 137 if ( is_readable( $php_error_pluggable ) ) { 138 138 require_once $php_error_pluggable; 139 die();139 return; 140 140 } 141 141 } … … 167 167 $message = __( 'The site is experiencing technical difficulties.' ); 168 168 169 $args = array( 'response' => 500 ); 169 $args = array( 170 'response' => 500, 171 'exit' => false, 172 ); 170 173 if ( function_exists( 'admin_url' ) ) { 171 174 $args['link_url'] = admin_url();
Note: See TracChangeset
for help on using the changeset viewer.