From cea5785cdbbd0739ae22c3777b2be1d70e96ed8a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 17 Oct 2021 20:31:02 +0000 Subject: [PATCH] Coding Standards: Consistently escape form action URL in `wp-admin/update-core.php`. Follow-up to [10166], [23739], [25806]. Props sabbirshouvo, mukesh27. Fixes #54278. Built from https://develop.svn.wordpress.org/trunk@51914 git-svn-id: http://core.svn.wordpress.org/trunk@51507 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 6e23d66866..a38e43c46f 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -154,7 +154,7 @@ function list_core_update( $update ) { echo $message; echo '

'; - echo '
'; + echo ''; wp_nonce_field( 'upgrade-core' ); echo '

'; diff --git a/wp-includes/version.php b/wp-includes/version.php index 20088aca95..e914caa0dd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51913'; +$wp_version = '5.9-alpha-51914'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.