Ticket #48716: 48716.1.patch
File 48716.1.patch, 928 bytes (added by , 5 years ago) |
---|
-
wp-admin/includes/class-wp-site-health.php
723 723 if ( $response['is_secure'] ) { 724 724 $result['label'] = sprintf( 725 725 /* translators: %s: The server PHP version. */ 726 __( 'Your version of PHP (%s) should be updated' ),726 __( 'Your version of PHP (%s) is out of date and should be updated' ), 727 727 PHP_VERSION 728 728 ); 729 729 $result['status'] = 'recommended'; … … 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 version of PHP (%s) is out of date and requires an update' ), 738 738 PHP_VERSION 739 739 ); 740 740 $result['status'] = 'critical';