Changeset 47215
- Timestamp:
- 02/08/2020 08:08:31 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r47198 r47215 33 33 public function __construct() { 34 34 $this->maybe_create_scheduled_event(); 35 36 $this->prepare_sql_data();37 35 38 36 $this->timeout_late_cron = 0; … … 1096 1094 */ 1097 1095 public function get_test_sql_server() { 1096 if ( ! $this->mysql_server_version ) { 1097 $this->prepare_sql_data(); 1098 } 1099 1098 1100 $result = array( 1099 1101 'label' => __( 'SQL server is up to date' ), … … 1182 1184 public function get_test_utf8mb4_support() { 1183 1185 global $wpdb; 1186 1187 if ( ! $this->mysql_server_version ) { 1188 $this->prepare_sql_data(); 1189 } 1184 1190 1185 1191 $result = array(
Note: See TracChangeset
for help on using the changeset viewer.