Bootstrap/Load: Silence `ini_set()` in `wp_debug_mode()`.

Merge of [37448] to the 4.5 branch.

Props SergeyBiryukov.
Fixes #36708.
Built from https://develop.svn.wordpress.org/branches/4.5@37451


git-svn-id: http://core.svn.wordpress.org/branches/4.5@37419 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-05-17 20:31:29 +00:00
parent 946b2cc8a2
commit e16574e010
2 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ function wp_debug_mode() {
}
if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
ini_set( 'display_errors', 0 );
@ini_set( 'display_errors', 0 );
}
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5.3-alpha-37450';
$wp_version = '4.5.3-alpha-37451';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.