diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index d61da84713..38a33e8557 100644 --- a/wp-admin/includes/dashboard.php +++ b/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 ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index d33d6c8f22..e0b6b6ac67 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6.1-alpha-50056'; +$wp_version = '5.6.1-alpha-50059'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.