Changeset 45611 for trunk/src/wp-includes/load.php
- Timestamp:
- 07/09/2019 05:44:42 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r45590 r45611 353 353 354 354 if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) || wp_doing_ajax() || wp_is_json_request() ) { 355 @ini_set( 'display_errors', 0 );355 ini_set( 'display_errors', 0 ); 356 356 } 357 357 } … … 909 909 if ( function_exists( 'mb_internal_encoding' ) ) { 910 910 $charset = get_option( 'blog_charset' ); 911 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 911 912 if ( ! $charset || ! @mb_internal_encoding( $charset ) ) { 912 913 mb_internal_encoding( 'UTF-8' );
Note: See TracChangeset
for help on using the changeset viewer.