Skip to content

Commit

Permalink
WP-r46511: WordPress 4.9.12.
Browse files Browse the repository at this point in the history
Conflicts:
  package.json
  src/wp-admin/about.php
  src/wp-includes/version.php
----
Merges https://core.trac.wordpress.org/changeset/46511 / WordPress/wordpress-develop@23f8b4b28a to ClassicPress.
  • Loading branch information
desrosj authored and nylen committed Oct 18, 2019
1 parent 30c498e commit 8c54545
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions src/wp-admin/about.php
Expand Up @@ -125,6 +125,26 @@
printf(
/* translators: %s: WordPress version number */
__( '<strong>WordPress version %s</strong> addressed some security issues.' ),
'4.9.12'
);
?>
<?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.12' )
)
);
?>
</p>
<p>
<?php
printf(
/* translators: %s: WordPress version number */
__( '<strong>WordPress Version %s</strong> addressed some security issues.' ),
'4.9.11'
);
?>
Expand Down
2 changes: 1 addition & 1 deletion src/wp-includes/version.php
Expand Up @@ -40,7 +40,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.9.11';
$wp_version = '4.9.12';

/**
* Holds the ClassicPress DB revision, increments when changes are made to the ClassicPress DB schema.
Expand Down

0 comments on commit 8c54545

Please sign in to comment.