Site Health: Update the language around how PHP should be updated.
Follow-up to [50042]. Props SergeyBiryukov. See #52327. Built from https://develop.svn.wordpress.org/trunk@50058 git-svn-id: http://core.svn.wordpress.org/trunk@49759 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5478a88919
commit
22bb49e4d6
|
@ -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
|
||||
);
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.7-alpha-50057';
|
||||
$wp_version = '5.7-alpha-50058';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue