Site Health: Remove an unused function that was erroneously added when the site health feature was introduced.

This function was and is never used as the `is_in_debug_mode` check is a direct one.

Fixes #50282

Built from https://develop.svn.wordpress.org/trunk@49122


git-svn-id: http://core.svn.wordpress.org/trunk@48884 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2020-10-10 20:24:03 +00:00
parent a7fafb3a1b
commit cdd8b2cbfa
2 changed files with 1 additions and 21 deletions

View File

@ -5158,26 +5158,6 @@ function wp_ajax_health_check_dotorg_communication() {
wp_send_json_success( $site_health->get_test_dotorg_communication() ); wp_send_json_success( $site_health->get_test_dotorg_communication() );
} }
/**
* Ajax handler for site health checks on debug mode.
*
* @since 5.2.0
*/
function wp_ajax_health_check_is_in_debug_mode() {
wp_verify_nonce( 'health-check-site-status' );
if ( ! current_user_can( 'view_site_health_checks' ) ) {
wp_send_json_error();
}
if ( ! class_exists( 'WP_Site_Health' ) ) {
require_once ABSPATH . 'wp-admin/includes/class-wp-site-health.php';
}
$site_health = WP_Site_Health::get_instance();
wp_send_json_success( $site_health->get_test_is_in_debug_mode() );
}
/** /**
* Ajax handler for site health checks on background updates. * Ajax handler for site health checks on background updates.
* *

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.6-alpha-49121'; $wp_version = '5.6-alpha-49122';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.