Media: Remove extra space from the `width` attribute in `wp_playlist_shortcode()` output.

Props hvar.
Fixes #50840.

git-svn-id: https://develop.svn.wordpress.org/trunk@48716 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-08-04 12:45:57 +00:00
parent 59ed4cbfc1
commit 42dc935f9f
1 changed files with 15 additions and 16 deletions

View File

@ -2687,15 +2687,11 @@ function wp_playlist_shortcode( $attr ) {
<?php if ( 'audio' === $atts['type'] ) : ?>
<div class="wp-playlist-current-item"></div>
<?php endif ?>
<<?php echo $safe_type; ?> controls="controls" preload="none" width="
<<?php echo $safe_type; ?> controls="controls" preload="none" width="<?php echo (int) $theme_width; ?>"
<?php
echo (int) $theme_width;
?>
"
<?php
if ( 'video' === $safe_type ) :
if ( 'video' === $safe_type ) {
echo ' height="', (int) $theme_height, '"';
endif;
}
?>
></<?php echo $safe_type; ?>>
<div class="wp-playlist-next"></div>
@ -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 ) ) {