WordPress 6.4.3.

git-svn-id: https://develop.svn.wordpress.org/branches/6.4@57463 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Joe McGill 2024-01-30 19:08:26 +00:00
parent 28b06ee1bc
commit ef752922cc
2 changed files with 34 additions and 7 deletions

View File

@ -51,12 +51,12 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
4
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.',
21
),
'6.4.1',
'4'
'6.4.3',
'21'
);
?>
<?php
@ -66,11 +66,12 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
sprintf(
/* translators: %s: WordPress version. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '6.4.1' )
sanitize_title( '6.4.3' )
)
);
?>
</p>
<p>
<?php
printf(
@ -96,6 +97,32 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
);
?>
</p>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
4
),
'6.4.1',
'4'
);
?>
<?php
printf(
/* translators: %s: HelpHub URL. */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version. */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '6.4.1' )
)
);
?>
</p>
</div>
</div>

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.4.3-alpha-57360-src';
$wp_version = '6.4.3-src';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.