mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
Multisite: Log error/warnings/notices from ms-files.php.
Previously errors were not displayed or logged, but the original intention was only to prevent them from being displayed. Hiding them from logs makes problems like #53492 much harder to debug. This makes the handling of errors in `ms-files` consistent with the REST API, `admin-ajax`, and XML-RPC. Props iandunn, johnjamesjacoby. Fixes #53493. git-svn-id: https://develop.svn.wordpress.org/trunk@51358 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -415,7 +415,7 @@ function timer_stop( $display = 0, $precision = 3 ) {
|
||||
* When `WP_DEBUG_LOG` is true, errors will be logged to `wp-content/debug.log`.
|
||||
* When `WP_DEBUG_LOG` is a valid path, errors will be logged to the specified file.
|
||||
*
|
||||
* Errors are never displayed for XML-RPC, REST, and Ajax requests.
|
||||
* Errors are never displayed for XML-RPC, REST, `ms-files.php`, and Ajax requests.
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @since 5.1.0 `WP_DEBUG_LOG` can be a file path.
|
||||
@@ -481,7 +481,10 @@ function wp_debug_mode() {
|
||||
error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
|
||||
}
|
||||
|
||||
if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) || wp_doing_ajax() || wp_is_json_request() ) {
|
||||
if (
|
||||
defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || defined( 'MS_FILES_REQUEST' ) ||
|
||||
( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) ||
|
||||
wp_doing_ajax() || wp_is_json_request() ) {
|
||||
ini_set( 'display_errors', 0 );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user