WordPress 4.6.16.

Built from https://develop.svn.wordpress.org/branches/4.6@46514


git-svn-id: http://core.svn.wordpress.org/branches/4.6@46311 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2019-10-14 20:10:39 +00:00
parent 51d665a4a5
commit 251c570d28
2 changed files with 23 additions and 3 deletions

View File

@ -65,7 +65,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
printf(
/* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ),
'4.6.15'
'4.6.16'
);
?>
<?php
@ -73,7 +73,27 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
/* translators: %s: HelpHub URL */
__( 'For more information, see <a href="%s">the release notes</a>.' ),
sprintf(
/* translators: %s: WordPress version */
/* translators: %s: WordPress version */
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
sanitize_title( '4.6.16' )
)
);
?>
</p>
<p>
<?php
printf(
/* translators: %s: WordPress version number */
__( '<strong>Version %s</strong> addressed some security issues.' ),
'4.6.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.6.15' )
)

View File

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