Skip to content

Commit 569a379

Browse files
committed
WordPress 6.4.4.
git-svn-id: https://develop.svn.wordpress.org/branches/6.4@57960 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 6ef3cac commit 569a379

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

src/wp-admin/about.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,32 @@
4646
<div class="about__section changelog has-subtle-background-color">
4747
<div class="column">
4848
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
49+
<p>
50+
<?php
51+
printf(
52+
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
53+
_n(
54+
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
55+
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.',
56+
12
57+
),
58+
'6.4.4',
59+
'12'
60+
);
61+
?>
62+
<?php
63+
printf(
64+
/* translators: %s: HelpHub URL. */
65+
__( 'For more information, see <a href="%s">the release notes</a>.' ),
66+
sprintf(
67+
/* translators: %s: WordPress version. */
68+
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
69+
sanitize_title( '6.4.4' )
70+
)
71+
);
72+
?>
73+
</p>
74+
4975
<p>
5076
<?php
5177
printf(

src/wp-includes/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @global string $wp_version
1818
*/
19-
$wp_version = '6.4.4-alpha-57488-src';
19+
$wp_version = '6.4.4-src';
2020

2121
/**
2222
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

0 commit comments

Comments
 (0)