From 8f95d7bc146b4b261fc3d074a18da80f28d8e986 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 26 Sep 2024 15:41:14 +0000 Subject: [PATCH] Administration: Escape the WordPress.org URL in `wp-admin/admin-footer.php`. Follow-up to [5892], [5955], [10976], [17879], [21366], [27469], [45927]. Props ramswarup, narenin, swissspidy. Fixes #62118. Built from https://develop.svn.wordpress.org/trunk@59096 git-svn-id: http://core.svn.wordpress.org/trunk@58492 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-footer.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index 9e683d0b11..c688f1a891 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -35,7 +35,7 @@ global $hook_suffix; $text = sprintf( /* translators: %s: https://wordpress.org/ */ __( 'Thank you for creating with WordPress.' ), - __( 'https://wordpress.org/' ) + esc_url( __( 'https://wordpress.org/' ) ) ); /** diff --git a/wp-includes/version.php b/wp-includes/version.php index ebb8e5d058..1d6087bd55 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-59095'; +$wp_version = '6.7-alpha-59096'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.