Validate video and audio metadata.
Merge of [40148] to the 3.7 branch. Built from https://develop.svn.wordpress.org/branches/3.7@40159 git-svn-id: http://core.svn.wordpress.org/branches/3.7@40098 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
44b16a7d23
commit
ec48ddfb4e
|
@ -2665,6 +2665,8 @@ function wp_read_video_metadata( $file ) {
|
|||
|
||||
wp_add_id3_tag_data( $metadata, $data );
|
||||
|
||||
$metadata = wp_kses_post_deep( $metadata );
|
||||
|
||||
return $metadata;
|
||||
}
|
||||
|
||||
|
@ -2704,5 +2706,7 @@ function wp_read_audio_metadata( $file ) {
|
|||
|
||||
wp_add_id3_tag_data( $metadata, $data );
|
||||
|
||||
$metadata = wp_kses_post_deep( $metadata );
|
||||
|
||||
return $metadata;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue