summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJonathan Desrosiers <desrosj@git.wordpress.org>2022-08-30 17:27:32 +0000
committerJonathan Desrosiers <desrosj@git.wordpress.org>2022-08-30 17:27:32 +0000
commit6c7764b63632d014a718ff0ac05dd0ec7ad1b278 (patch)
treeca383be974b15b1bf8ea0a81abe2e299232a128c
parent2bc4ec0438ecb25e8485749813eb0707498c3039 (diff)
downloadwordpress-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.json2
-rw-r--r--package.json2
-rw-r--r--src/wp-admin/about.php20
-rw-r--r--src/wp-includes/version.php2
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.