Media: Remove extra space from the `width` attribute in `wp_playlist_shortcode()` output.
Props hvar. Fixes #50840. Built from https://develop.svn.wordpress.org/trunk@48716 git-svn-id: http://core.svn.wordpress.org/trunk@48478 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e2c8e2fa5a
commit
b1c6077591
|
@ -2685,28 +2685,24 @@ function wp_playlist_shortcode( $attr ) {
|
|||
?>
|
||||
<div class="wp-playlist wp-<?php echo $safe_type; ?>-playlist wp-playlist-<?php echo $safe_style; ?>">
|
||||
<?php if ( 'audio' === $atts['type'] ) : ?>
|
||||
<div class="wp-playlist-current-item"></div>
|
||||
<div class="wp-playlist-current-item"></div>
|
||||
<?php endif ?>
|
||||
<<?php echo $safe_type; ?> controls="controls" preload="none" width="
|
||||
<?php
|
||||
echo (int) $theme_width;
|
||||
?>
|
||||
"
|
||||
<?php
|
||||
if ( 'video' === $safe_type ) :
|
||||
echo ' height="', (int) $theme_height, '"';
|
||||
endif;
|
||||
?>
|
||||
<<?php echo $safe_type; ?> controls="controls" preload="none" width="<?php echo (int) $theme_width; ?>"
|
||||
<?php
|
||||
if ( 'video' === $safe_type ) {
|
||||
echo ' height="', (int) $theme_height, '"';
|
||||
}
|
||||
?>
|
||||
></<?php echo $safe_type; ?>>
|
||||
<div class="wp-playlist-next"></div>
|
||||
<div class="wp-playlist-prev"></div>
|
||||
<noscript>
|
||||
<ol>
|
||||
<?php
|
||||
foreach ( $attachments as $att_id => $attachment ) {
|
||||
printf( '<li>%s</li>', wp_get_attachment_link( $att_id ) );
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
foreach ( $attachments as $att_id => $attachment ) {
|
||||
printf( '<li>%s</li>', wp_get_attachment_link( $att_id ) );
|
||||
}
|
||||
?>
|
||||
</ol>
|
||||
</noscript>
|
||||
<script type="application/json" class="wp-playlist-script"><?php echo wp_json_encode( $data ); ?></script>
|
||||
|
@ -3207,13 +3203,16 @@ function wp_video_shortcode( $attr, $content = '' ) {
|
|||
}
|
||||
|
||||
$html = '';
|
||||
|
||||
if ( 'mediaelement' === $library && 1 === $instance ) {
|
||||
$html .= "<!--[if lt IE 9]><script>document.createElement('video');</script><![endif]-->\n";
|
||||
}
|
||||
|
||||
$html .= sprintf( '<video %s controls="controls">', join( ' ', $attr_strings ) );
|
||||
|
||||
$fileurl = '';
|
||||
$source = '<source type="%s" src="%s" />';
|
||||
|
||||
foreach ( $default_types as $fallback ) {
|
||||
if ( ! empty( $atts[ $fallback ] ) ) {
|
||||
if ( empty( $fileurl ) ) {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6-alpha-48715';
|
||||
$wp_version = '5.6-alpha-48716';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue