Changeset 30261
- Timestamp:
- 11/06/2014 08:22:32 AM (11 years ago)
- Location:
- branches/4.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.0
-
branches/4.0/src/wp-includes/media.php
r30259 r30261 1597 1597 'class' => apply_filters( 'wp_audio_shortcode_class', 'wp-audio-shortcode' ), 1598 1598 'id' => sprintf( 'audio-%d-%d', $post_id, $instances ), 1599 'loop' => $atts['loop'],1600 'autoplay' => $atts['autoplay'],1599 'loop' => wp_validate_boolean( $atts['loop'] ), 1600 'autoplay' => wp_validate_boolean( $atts['autoplay'] ), 1601 1601 'preload' => $atts['preload'], 1602 1602 'style' => 'width: 100%; visibility: hidden;', … … 1823 1823 'height' => absint( $atts['height'] ), 1824 1824 'poster' => esc_url( $atts['poster'] ), 1825 'loop' => $atts['loop'],1826 'autoplay' => $atts['autoplay'],1825 'loop' => wp_validate_boolean( $atts['loop'] ), 1826 'autoplay' => wp_validate_boolean( $atts['autoplay'] ), 1827 1827 'preload' => $atts['preload'], 1828 1828 );
Note: See TracChangeset
for help on using the changeset viewer.