diff options
author | Jonathan Desrosiers <desrosj@git.wordpress.org> | 2020-10-29 19:34:03 +0000 |
---|---|---|
committer | Jonathan Desrosiers <desrosj@git.wordpress.org> | 2020-10-29 19:34:03 +0000 |
commit | a5fc920c18a4f6dbdd886917969195ffa84a3f49 (patch) | |
tree | d8318f34ddb6082fe256487274269236a0b00842 | |
parent | 05a7b2bce228e1b9c8356f1286975dd542d9c6aa (diff) | |
download | wordpress-a5fc920c18a4f6dbdd886917969195ffa84a3f49.tar.gz wordpress-a5fc920c18a4f6dbdd886917969195ffa84a3f49.zip |
WordPress 4.5.23.
git-svn-id: https://develop.svn.wordpress.org/branches/4.5@49419 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/wp-admin/about.php | 20 | ||||
-rw-r--r-- | src/wp-includes/version.php | 2 |
3 files changed, 22 insertions, 2 deletions
diff --git a/package.json b/package.json index bd90bb54cd..f1b35ee744 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.5.22", + "version": "4.5.23", "description": "WordPress is web software you can use to create a beautiful website or blog.", "repository": { "type": "svn", diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php index 3b94e993ec..c79f8510ab 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -45,6 +45,26 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); printf( /* translators: %s: WordPress version number */ __( '<strong>Version %s</strong> addressed some security issues.' ), + '4.5.23' + ); + ?> + <?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.5.23' ) + ) + ); + ?> + </p> + <p> + <?php + printf( + /* translators: %s: WordPress version number */ + __( '<strong>Version %s</strong> addressed some security issues.' ), '4.5.22' ); ?> diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index c5930266d0..b9eddd9f5a 100644 --- a/src/wp-includes/version.php +++ b/src/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5.22-src'; +$wp_version = '4.5.23-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |