WordPress 4.9.15.

Built from https://develop.svn.wordpress.org/branches/4.9@47994


git-svn-id: http://core.svn.wordpress.org/branches/4.9@47762 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2020-06-10 21:37:03 +00:00
parent b1cb849975
commit 916a395691
2 changed files with 33 additions and 13 deletions

View File

@ -36,17 +36,37 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: WordPress version number */ /* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ),
'4.9.15'
);
?>
<?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( '4.9.15' )
)
);
?>
</p>
<p>
<?php
printf(
/* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ), __( '<strong>Version %s</strong> addressed some security issues.' ),
'4.9.14' '4.9.14'
); );
?> ?>
<?php <?php
printf( printf(
/* translators: %s: HelpHub URL */ /* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ), __( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf( sprintf(
/* translators: %s: WordPress version */ /* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '4.9.14' ) sanitize_title( '4.9.14' )
) )
@ -56,17 +76,17 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: WordPress version number */ /* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ), __( '<strong>Version %s</strong> addressed some security issues.' ),
'4.9.13' '4.9.13'
); );
?> ?>
<?php <?php
printf( printf(
/* translators: %s: HelpHub URL */ /* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ), __( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf( sprintf(
/* translators: %s: WordPress version */ /* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '4.9.13' ) sanitize_title( '4.9.13' )
) )
@ -76,17 +96,17 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: WordPress version number */ /* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ), __( '<strong>Version %s</strong> addressed some security issues.' ),
'4.9.12' '4.9.12'
); );
?> ?>
<?php <?php
printf( printf(
/* translators: %s: HelpHub URL */ /* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ), __( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf( sprintf(
/* translators: %s: WordPress version */ /* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '4.9.12' ) sanitize_title( '4.9.12' )
) )
@ -96,17 +116,17 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<p> <p>
<?php <?php
printf( printf(
/* translators: %s: WordPress version number */ /* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ), __( '<strong>Version %s</strong> addressed some security issues.' ),
'4.9.11' '4.9.11'
); );
?> ?>
<?php <?php
printf( printf(
/* translators: %s: HelpHub URL */ /* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ), __( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf( sprintf(
/* translators: %s: WordPress version */ /* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '4.9.11' ) sanitize_title( '4.9.11' )
) )

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.9.14'; $wp_version = '4.9.15';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.