mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-06 05:34:26 +00:00
Coding standards: Properly escape URLs returned by self_admin_url() calls.
This address some other echoed instances missed by [53839]. Fixes #56329. git-svn-id: https://develop.svn.wordpress.org/trunk@53840 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -827,7 +827,7 @@ function install_plugin_information() {
|
||||
printf(
|
||||
/* translators: %s: URL to WordPress Updates screen. */
|
||||
' ' . __( '<a href="%s" target="_parent">Click here to update WordPress</a>.' ),
|
||||
self_admin_url( 'update-core.php' )
|
||||
esc_url( self_admin_url( 'update-core.php' ) )
|
||||
);
|
||||
}
|
||||
echo '</p></div>';
|
||||
|
||||
Reference in New Issue
Block a user