mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 13:41:24 +01:00
Coding Standards: Add missing escaping in Custom_Image_Header::step_2()
.
Follow-up to [4673], [14907]. Props nareshbheda, audrasjb, kebbet. Fixes #59278. Built from https://develop.svn.wordpress.org/trunk@57364 git-svn-id: http://core.svn.wordpress.org/trunk@56870 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f3fe615b79
commit
cdbe6c71a5
@ -934,7 +934,7 @@ endif;
|
|||||||
<p class="hide-if-js"><strong><?php _e( 'You need JavaScript to choose a part of the image.' ); ?></strong></p>
|
<p class="hide-if-js"><strong><?php _e( 'You need JavaScript to choose a part of the image.' ); ?></strong></p>
|
||||||
|
|
||||||
<div id="crop_image" style="position: relative">
|
<div id="crop_image" style="position: relative">
|
||||||
<img src="<?php echo esc_url( $url ); ?>" id="upload" width="<?php echo $width; ?>" height="<?php echo $height; ?>" alt="" />
|
<img src="<?php echo esc_url( $url ); ?>" id="upload" width="<?php echo esc_attr( $width ); ?>" height="<?php echo esc_attr( $height ); ?>" alt="" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="hidden" name="x1" id="x1" value="0" />
|
<input type="hidden" name="x1" id="x1" value="0" />
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.5-alpha-57363';
|
$wp_version = '6.5-alpha-57364';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user