Validate video and audio metadata.
Merge of [40148] to the 4.2 branch. Built from https://develop.svn.wordpress.org/branches/4.2@40154 git-svn-id: http://core.svn.wordpress.org/branches/4.2@40093 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f449b0a0ce
commit
933f556e84
|
@ -2980,6 +2980,8 @@ function wp_read_video_metadata( $file ) {
|
|||
|
||||
wp_add_id3_tag_data( $metadata, $data );
|
||||
|
||||
$metadata = wp_kses_post_deep( $metadata );
|
||||
|
||||
return $metadata;
|
||||
}
|
||||
|
||||
|
@ -3019,6 +3021,8 @@ 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