Skip to content

Commit 89d253b

Browse files
committed
WordPress 6.9.2
git-svn-id: https://develop.svn.wordpress.org/branches/6.9@61898 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a1d1936 commit 89d253b

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

src/wp-admin/about.php

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,27 @@
6262

6363
<div class="about__section changelog has-subtle-background-color">
6464
<div class="column">
65-
<h2><?php _e( 'Maintenance and Security Release' ); ?></h2>
65+
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
66+
<p>
67+
<?php
68+
printf(
69+
/* translators: %s: WordPress version. */
70+
__( '<strong>Version %s</strong> addressed some security issues.' ),
71+
'6.9.2'
72+
);
73+
?>
74+
<?php
75+
printf(
76+
/* translators: %s: HelpHub URL. */
77+
__( 'For more information, see <a href="%s">the release notes</a>.' ),
78+
sprintf(
79+
/* translators: %s: WordPress version. */
80+
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
81+
sanitize_title( '6.9.2' )
82+
)
83+
);
84+
?>
85+
</p>
6686
<p>
6787
<?php
6888
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.9.2-alpha-61583-src';
19+
$wp_version = '6.9.2-src';
2020

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

0 commit comments

Comments
 (0)