From 781d8a54ed9316841249ea34f13ffde527aface8 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sat, 10 Oct 2020 20:22:41 +0000 Subject: [PATCH] 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 git-svn-id: https://develop.svn.wordpress.org/trunk@49122 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/ajax-actions.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php index cd43df1436..357fdc8d52 100644 --- a/src/wp-admin/includes/ajax-actions.php +++ b/src/wp-admin/includes/ajax-actions.php @@ -5158,26 +5158,6 @@ function wp_ajax_health_check_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. *