We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fc2c3 commit 8ad0d15Copy full SHA for 8ad0d15
src/wp-admin/about.php
@@ -62,6 +62,26 @@
62
63
<div class="changelog point-releases">
64
<h3><?php _e( 'Maintenance and Security Releases' ); ?></h3>
65
+ <p>
66
+ <?php
67
+ printf(
68
+ /* translators: %s: WordPress version number */
69
+ __( '<strong>Version %s</strong> addressed some security issues.' ),
70
+ '5.0.9'
71
+ );
72
+ ?>
73
74
75
+ /* translators: %s: HelpHub URL */
76
+ __( 'For more information, see <a href="%s">the release notes</a>.' ),
77
+ sprintf(
78
+ /* translators: %s: WordPress version */
79
+ esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
80
+ sanitize_title( '5.0.9' )
81
+ )
82
83
84
+ </p>
85
<p>
86
<?php
87
printf(
0 commit comments