diff options
author | Jonathan Desrosiers <desrosj@git.wordpress.org> | 2022-08-30 17:27:32 +0000 |
---|---|---|
committer | Jonathan Desrosiers <desrosj@git.wordpress.org> | 2022-08-30 17:27:32 +0000 |
commit | 6c7764b63632d014a718ff0ac05dd0ec7ad1b278 (patch) | |
tree | ca383be974b15b1bf8ea0a81abe2e299232a128c | |
parent | 2bc4ec0438ecb25e8485749813eb0707498c3039 (diff) | |
download | wordpress-6c7764b63632d014a718ff0ac05dd0ec7ad1b278.tar.gz wordpress-6c7764b63632d014a718ff0ac05dd0ec7ad1b278.zip |
WordPress 4.7.24.
git-svn-id: https://develop.svn.wordpress.org/branches/4.7@54000 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r-- | package-lock.json | 2 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/wp-admin/about.php | 20 | ||||
-rw-r--r-- | src/wp-includes/version.php | 2 |
4 files changed, 23 insertions, 3 deletions
diff --git a/package-lock.json b/package-lock.json index fe0763acfb..2b25898555 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.7.23", + "version": "4.7.24", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d26fb42dea..964158de80 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "WordPress", - "version": "4.7.23", + "version": "4.7.24", "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 f4cfa5988a..3d87c1df84 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -49,6 +49,26 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); <?php printf( /* translators: %s: WordPress version number */ + __( '<strong>Version %s</strong> addressed some security issues.' ), + '4.7.24' + ); + ?> + <?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.7.24' ) + ) + ); + ?> + </p> + <p> + <?php + printf( + /* translators: %s: WordPress version number */ __( '<strong>Version %s</strong> addressed one security issue.' ), '4.7.23' ); diff --git a/src/wp-includes/version.php b/src/wp-includes/version.php index d1f7dece8c..7f10238944 100644 --- a/src/wp-includes/version.php +++ b/src/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7.23-src'; +$wp_version = '4.7.24-src'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |