WordPress 4.8.11.

Built from https://develop.svn.wordpress.org/branches/4.8@46512


git-svn-id: http://core.svn.wordpress.org/branches/4.8@46309 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2019-10-14 20:09:50 +00:00
parent 20821b59c0
commit c359dde932
2 changed files with 24 additions and 4 deletions

View File

@ -48,17 +48,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.8.11'
);
?>
<?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.8.11' )
)
);
?>
</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.8.10' '4.8.10'
); );
?> ?>
<?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.8.10' ) sanitize_title( '4.8.10' )
) )

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.8.10'; $wp_version = '4.8.11';
/** /**
* 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.