Add .webm (video/webm) to wp_get_mime_types(). props wonderboymusic. fixes #14659

git-svn-id: https://develop.svn.wordpress.org/trunk@23229 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2012-12-29 18:07:23 +00:00
parent 654154ad89
commit 7533dbadfe

View File

@ -1884,6 +1884,7 @@ function wp_get_mime_types() {
'mpeg|mpg|mpe' => 'video/mpeg',
'mp4|m4v' => 'video/mp4',
'ogv' => 'video/ogg',
'webm' => 'video/webm',
'mkv' => 'video/x-matroska',
// Text formats
'txt|asc|c|cc|h' => 'text/plain',