Media: Make sure `$caption_id` does not depend on an undefined variable.
See #34595. Built from https://develop.svn.wordpress.org/trunk@42692 git-svn-id: http://core.svn.wordpress.org/trunk@42520 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3e19b66f40
commit
dffe5deb97
|
@ -1556,13 +1556,14 @@ function img_caption_shortcode( $attr, $content = null ) {
|
||||||
return $content;
|
return $content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$caption_id = '';
|
||||||
|
|
||||||
if ( ! empty( $atts['id'] ) ) {
|
if ( ! empty( $atts['id'] ) ) {
|
||||||
$att_id = esc_attr( sanitize_html_class( $atts['id'] ) );
|
$att_id = esc_attr( sanitize_html_class( $atts['id'] ) );
|
||||||
$atts['id'] = 'id="' . $att_id . '" ';
|
$atts['id'] = 'id="' . $att_id . '" ';
|
||||||
|
$caption_id = 'caption-' . str_replace( '_', '-', $att_id );
|
||||||
}
|
}
|
||||||
|
|
||||||
$caption_id = 'caption-' . str_replace( '_', '-', $att_id );
|
|
||||||
|
|
||||||
$class = trim( 'wp-caption ' . $atts['align'] . ' ' . $atts['class'] );
|
$class = trim( 'wp-caption ' . $atts['align'] . ' ' . $atts['class'] );
|
||||||
|
|
||||||
$html5 = current_theme_supports( 'html5', 'caption' );
|
$html5 = current_theme_supports( 'html5', 'caption' );
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-42691';
|
$wp_version = '5.0-alpha-42692';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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