Escape playlist data in templates.
props wonderboymusic. fixes #27710. Built from https://develop.svn.wordpress.org/trunk@28050 git-svn-id: http://core.svn.wordpress.org/trunk@27880 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b631825414
commit
4d6fcfdba1
|
@ -1020,7 +1020,7 @@ function wp_underscore_playlist_templates() {
|
||||||
<img src="{{ data.thumb.src }}"/>
|
<img src="{{ data.thumb.src }}"/>
|
||||||
<# } #>
|
<# } #>
|
||||||
<div class="wp-playlist-caption">
|
<div class="wp-playlist-caption">
|
||||||
<span class="wp-playlist-item-meta wp-playlist-item-title">“{{{ data.title }}}”</span>
|
<span class="wp-playlist-item-meta wp-playlist-item-title">“{{ data.title }}”</span>
|
||||||
<# if ( data.meta.album ) { #><span class="wp-playlist-item-meta wp-playlist-item-album">{{ data.meta.album }}</span><# } #>
|
<# if ( data.meta.album ) { #><span class="wp-playlist-item-meta wp-playlist-item-album">{{ data.meta.album }}</span><# } #>
|
||||||
<# if ( data.meta.artist ) { #><span class="wp-playlist-item-meta wp-playlist-item-artist">{{ data.meta.artist }}</span><# } #>
|
<# if ( data.meta.artist ) { #><span class="wp-playlist-item-meta wp-playlist-item-artist">{{ data.meta.artist }}</span><# } #>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1194,9 +1194,9 @@ function wp_playlist_shortcode( $attr ) {
|
||||||
$track = array(
|
$track = array(
|
||||||
'src' => $url,
|
'src' => $url,
|
||||||
'type' => $ftype['type'],
|
'type' => $ftype['type'],
|
||||||
'title' => get_the_title( $attachment->ID ),
|
'title' => $attachment->post_title,
|
||||||
'caption' => wptexturize( $attachment->post_excerpt ),
|
'caption' => $attachment->post_excerpt,
|
||||||
'description' => wptexturize( $attachment->post_content )
|
'description' => $attachment->post_content
|
||||||
);
|
);
|
||||||
|
|
||||||
$track['meta'] = array();
|
$track['meta'] = array();
|
||||||
|
|
Loading…
Reference in New Issue