Opened 13 years ago
Closed 12 years ago
#20136 closed defect (bug) (duplicate)
ms-files.php sets *.webm mimetype incorrectly
Reported by: | braydonf | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Multisite | Keywords: | |
Focuses: | Cc: |
Description
The content-type of *.webm files is incorrectly being set to image/webm by ms-files.php for multisite networks on uploaded *.webm videos in the media library.
Change History (6)
#2
@
13 years ago
In one of the themes I have done so yes, using this in functions.php
add_filter( 'upload_mimes', 'custom_mimes' ); function custom_mimes( $mimes ){ $mimes['webm'] = 'video/webm'; return $mimes; }
However in the rewrite to wp-includes/ms-files.php, the filter isn't being run since it is "outside" of a site.
Note: See
TracTickets for help on using
tickets.
There is no reference to
.webm
in core... so you must be filtering the list of allowed file extensions/MIME types in order to be able to upload WebM videos in the first place?