Make WordPress Core

Ticket #52112: 52112.diff

File 52112.diff, 899 bytes (added by hermpheus, 3 years ago)
  • src/wp-admin/includes/class-wp-site-health.php

    diff --git src/wp-admin/includes/class-wp-site-health.php src/wp-admin/includes/class-wp-site-health.php
    index a21045d291..be1d439aee 100644
    class WP_Site_Health { 
    23612361                // Conditionally include REST rules if the function for it exists.
    23622362                if ( function_exists( 'rest_url' ) ) {
    23632363                        $tests['direct']['rest_availability'] = array(
    2364                                 'label' => __( 'REST API availability' ),
    2365                                 'test'  => 'rest_availability',
     2364                                'label'     => __( 'REST API availability' ),
     2365                                'test'      => 'rest_availability',
     2366                                'skip_cron' => true,
    23662367                        );
    23672368                }
    23682369
    class WP_Site_Health { 
    27292730                }
    27302731
    27312732                foreach ( $tests['direct'] as $test ) {
     2733                        if ( ! empty( $test['skip_cron'] ) ) {
     2734                                continue;
     2735                        }
    27322736
    27332737                        if ( is_string( $test['test'] ) ) {
    27342738                                $test_function = sprintf(