Add support for rar and 7x file uploading. Fixes #16412 props Caspie.
git-svn-id: https://develop.svn.wordpress.org/trunk@18751 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b709c2ac4e
commit
cdf5d84b73
|
@ -2432,7 +2432,7 @@ function wp_ext2type( $ext ) {
|
|||
'spreadsheet' => array( 'numbers', 'ods', 'xls', 'xlsx', 'xlsb', 'xlsm' ),
|
||||
'interactive' => array( 'key', 'ppt', 'pptx', 'pptm', 'odp', 'swf' ),
|
||||
'text' => array( 'asc', 'csv', 'tsv', 'txt' ),
|
||||
'archive' => array( 'bz2', 'cab', 'dmg', 'gz', 'rar', 'sea', 'sit', 'sqx', 'tar', 'tgz', 'zip' ),
|
||||
'archive' => array( 'bz2', 'cab', 'dmg', 'gz', 'rar', 'sea', 'sit', 'sqx', 'tar', 'tgz', 'zip', '7z' ),
|
||||
'code' => array( 'css', 'htm', 'html', 'php', 'js' ),
|
||||
));
|
||||
foreach ( $ext2type as $type => $exts )
|
||||
|
@ -2598,6 +2598,8 @@ function get_allowed_mime_types() {
|
|||
'tar' => 'application/x-tar',
|
||||
'zip' => 'application/zip',
|
||||
'gz|gzip' => 'application/x-gzip',
|
||||
'rar' => 'application/rar',
|
||||
'7z' => 'application/x-7z-compressed',
|
||||
'exe' => 'application/x-msdownload',
|
||||
// openoffice formats
|
||||
'odt' => 'application/vnd.oasis.opendocument.text',
|
||||
|
|
Loading…
Reference in New Issue