Changeset 12383 for trunk/wp-admin/update.php
- Timestamp:
- 12/12/2009 09:20:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/update.php
r11013 r12383 53 53 if( isset($_GET['failure']) ){ 54 54 echo '<p>' . __('Plugin failed to reactivate due to a fatal error.') . '</p>'; 55 error_reporting( E_ALL ^ E_NOTICE ); 55 56 if ( defined('E_RECOVERABLE_ERROR') ) 57 error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR); 58 else 59 error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING); 60 56 61 @ini_set('display_errors', true); //Ensure that Fatal errors are displayed. 57 62 include(WP_PLUGIN_DIR . '/' . $plugin);
Note: See TracChangeset
for help on using the changeset viewer.