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:
parent
23e8ce70f0
commit
8f95d7bc14
|
@ -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/' ) )
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue