From e1beaec1be8bc08a526b8ebfc79002b955292d5b Mon Sep 17 00:00:00 2001 From: Jake Spurlock Date: Thu, 28 Jan 2021 17:21:48 +0000 Subject: [PATCH] Site Health: Update the language around how PHP should be updated. Follow-up to [50042]. Props SergeyBiryukov. See #52327. git-svn-id: https://develop.svn.wordpress.org/trunk@50058 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/dashboard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php index bbcdc19620..b8550b4c8a 100644 --- a/src/wp-admin/includes/dashboard.php +++ b/src/wp-admin/includes/dashboard.php @@ -1749,13 +1749,13 @@ function wp_dashboard_php_nag() { if ( isset( $response['is_secure'] ) && ! $response['is_secure'] ) { $msg = sprintf( /* translators: %s: The server PHP version. */ - __( 'Your site is running an insecure version of PHP (%s), and should be updated.' ), + __( 'Your site is running an insecure version of PHP (%s), which should be updated.' ), PHP_VERSION ); } else { $msg = sprintf( /* translators: %s: The server PHP version. */ - __( 'Your site is running an outdated version of PHP (%s), and should be updated.' ), + __( 'Your site is running an outdated version of PHP (%s), which should be updated.' ), PHP_VERSION ); }