diff --git a/wp-admin/includes/class-wp-site-health.php b/wp-admin/includes/class-wp-site-health.php
index 801707d2f0f..2b48212d32c 100644
a
|
b
|
private function prepare_sql_data() { |
215 | 215 | * It's possible to block updates with the `wp_version_check` filter, but this can't be checked |
216 | 216 | * during an Ajax call, as the filter is never introduced then. |
217 | 217 | * |
218 | | * This filter overrides a normal page request if it's made by an admin through the Ajax call |
| 218 | * This filter overrides a standard page request if it's made by an admin through the Ajax call |
219 | 219 | * with the right query argument to check for this. |
220 | 220 | * |
221 | 221 | * @since 5.2.0 |
… |
… |
public function get_test_theme_version() { |
692 | 692 | |
693 | 693 | $result['description'] .= sprintf( |
694 | 694 | '<p>%s</p>', |
695 | | __( 'Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your normal theme.' ) |
| 695 | __( 'Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.' ) |
696 | 696 | ); |
697 | 697 | } |
698 | 698 | |
… |
… |
public function get_test_php_extensions() { |
981 | 981 | // If this module is a fallback for another function, check if that other function passed. |
982 | 982 | if ( isset( $module['fallback_for'] ) ) { |
983 | 983 | /* |
984 | | * If that other function has a failure, mark this module as required for normal operations. |
| 984 | * If that other function has a failure, mark this module as required for usual operations. |
985 | 985 | * If that other function hasn't failed, skip this test as it's only a fallback. |
986 | 986 | */ |
987 | 987 | if ( isset( $failures[ $module['fallback_for'] ] ) ) { |
… |
… |
public function get_test_is_in_debug_mode() { |
1453 | 1453 | '<p>%s</p>', |
1454 | 1454 | sprintf( |
1455 | 1455 | /* translators: %s: WP_DEBUG_LOG */ |
1456 | | __( 'The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to normal users.' ), |
| 1456 | __( 'The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.' ), |
1457 | 1457 | '<code>WP_DEBUG_LOG</code>' |
1458 | 1458 | ) |
1459 | 1459 | ); |