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
This commit is contained in:
Sergey Biryukov 2024-09-26 15:41:14 +00:00
parent 23e8ce70f0
commit 8f95d7bc14
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ global $hook_suffix;
$text = sprintf(
/* translators: %s: https://wordpress.org/ */
__( 'Thank you for creating with <a href="%s">WordPress</a>.' ),
__( 'https://wordpress.org/' )
esc_url( __( 'https://wordpress.org/' ) )
);
/**

View File

@ -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.