Changeset 30185
- Timestamp:
- 11/03/2014 05:02:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r30161 r30185 1576 1576 'class' => apply_filters( 'wp_audio_shortcode_class', 'wp-audio-shortcode' ), 1577 1577 'id' => sprintf( 'audio-%d-%d', $post_id, $instances ), 1578 'loop' => $atts['loop'],1579 'autoplay' => $atts['autoplay'],1578 'loop' => wp_validate_boolean( $atts['loop'] ), 1579 'autoplay' => wp_validate_boolean( $atts['autoplay'] ), 1580 1580 'preload' => $atts['preload'], 1581 1581 'style' => 'width: 100%; visibility: hidden;', … … 1802 1802 'height' => absint( $atts['height'] ), 1803 1803 'poster' => esc_url( $atts['poster'] ), 1804 'loop' => $atts['loop'],1805 'autoplay' => $atts['autoplay'],1804 'loop' => wp_validate_boolean( $atts['loop'] ), 1805 'autoplay' => wp_validate_boolean( $atts['autoplay'] ), 1806 1806 'preload' => $atts['preload'], 1807 1807 );
Note: See TracChangeset
for help on using the changeset viewer.