diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php
index bbf38dce62..0cef897b1e 100644
a
|
b
|
class WP_Site_Health { |
33 | 33 | public function __construct() { |
34 | 34 | $this->maybe_create_scheduled_event(); |
35 | 35 | |
36 | | $this->prepare_sql_data(); |
37 | | |
38 | 36 | $this->timeout_late_cron = 0; |
39 | 37 | $this->timeout_missed_cron = - 5 * MINUTE_IN_SECONDS; |
40 | 38 | |
… |
… |
class WP_Site_Health { |
1095 | 1093 | * @return array The test results. |
1096 | 1094 | */ |
1097 | 1095 | public function get_test_sql_server() { |
| 1096 | $this->prepare_sql_data(); |
| 1097 | |
1098 | 1098 | $result = array( |
1099 | 1099 | 'label' => __( 'SQL server is up to date' ), |
1100 | 1100 | 'status' => 'good', |