Changeset 49193 for trunk/src/wp-includes/media.php
- Timestamp:
- 10/18/2020 05:25:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r49128 r49193 1036 1036 1037 1037 if ( is_array( $size_class ) ) { 1038 $size_class = join( 'x', $size_class );1038 $size_class = implode( 'x', $size_class ); 1039 1039 } 1040 1040 … … 2951 2951 } 2952 2952 2953 $html .= sprintf( '<audio %s controls="controls">', join( ' ', $attr_strings ) );2953 $html .= sprintf( '<audio %s controls="controls">', implode( ' ', $attr_strings ) ); 2954 2954 2955 2955 $fileurl = ''; … … 3219 3219 } 3220 3220 3221 $html .= sprintf( '<video %s controls="controls">', join( ' ', $attr_strings ) );3221 $html .= sprintf( '<video %s controls="controls">', implode( ' ', $attr_strings ) ); 3222 3222 3223 3223 $fileurl = '';
Note: See TracChangeset
for help on using the changeset viewer.