diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php
index 605f194ca3..0d641c0304 100644
|
a
|
b
|
class WP_Site_Health { |
| 711 | 711 | if ( $response['is_supported'] ) { |
| 712 | 712 | $result['label'] = sprintf( |
| 713 | 713 | /* translators: %s: The server PHP version. */ |
| 714 | | __( 'Your version of PHP (%s) is out of date' ), |
| | 714 | __( 'Your PHP version (%s) is outdated requires an update' ), |
| 715 | 715 | PHP_VERSION |
| 716 | 716 | ); |
| 717 | 717 | $result['status'] = 'recommended'; |
| … |
… |
class WP_Site_Health { |
| 734 | 734 | // Anything no longer secure must be updated. |
| 735 | 735 | $result['label'] = sprintf( |
| 736 | 736 | /* translators: %s: The server PHP version. */ |
| 737 | | __( 'Your version of PHP (%s) requires an update' ), |
| | 737 | __( 'Your PHP version (%s) is outdated requires an update' ), |
| 738 | 738 | PHP_VERSION |
| 739 | 739 | ); |
| 740 | 740 | $result['status'] = 'critical'; |