mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-27 07:54:28 +00:00
Administration: Consistently escape admin_url() links.
Props chintan1896, mukesh27. Fixes #53426. git-svn-id: https://develop.svn.wordpress.org/trunk@51177 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -22,7 +22,7 @@ $credits = wp_credits();
|
||||
|
||||
<div class="about__header">
|
||||
<div class="about__header-image">
|
||||
<img alt="<?php _e( 'Code is Poetry' ); ?>" src="<?php echo admin_url( 'images/about-badge.svg' ); ?>" />
|
||||
<img alt="<?php _e( 'Code is Poetry' ); ?>" src="<?php echo esc_url( admin_url( 'images/about-badge.svg' ) ); ?>" />
|
||||
</div>
|
||||
|
||||
<div class="about__header-container">
|
||||
|
||||
Reference in New Issue
Block a user