Make WordPress Core

Changeset 14066


Ignore:
Timestamp:
04/11/2010 08:50:23 AM (15 years ago)
Author:
dd32
Message:

Add WordPerfect filetypes to Mimetype list. Props morganestes. Fixes #12849

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r14064 r14066  
    23262326        'audio'       => array( 'aac', 'ac3',  'aif',  'aiff', 'm3a',  'm4a',   'm4b', 'mka', 'mp1', 'mp2',  'mp3', 'ogg', 'oga', 'ram', 'wav', 'wma' ),
    23272327        'video'       => array( 'asf', 'avi',  'divx', 'dv',   'flv',  'm4v',   'mkv', 'mov', 'mp4', 'mpeg', 'mpg', 'mpv', 'ogm', 'ogv', 'qt',  'rm', 'vob', 'wmv' ),
    2328         'document'    => array( 'doc', 'docx', 'docm', 'dotm', 'odt',  'pages', 'pdf', 'rtf' ),
     2328        'document'    => array( 'doc', 'docx', 'docm', 'dotm', 'odt',  'pages', 'pdf', 'rtf', 'wp',  'wpd' ),
    23292329        'spreadsheet' => array( 'numbers',     'ods',  'xls',  'xlsx', 'xlsb',  'xlsm' ),
    23302330        'interactive' => array( 'key', 'ppt',  'pptx', 'pptm', 'odp',  'swf' ),
    23312331        'text'        => array( 'asc', 'csv',  'tsv',  'txt' ),
    23322332        'archive'     => array( 'bz2', 'cab',  'dmg',  'gz',   'rar',  'sea',   'sit', 'sqx', 'tar', 'tgz',  'zip' ),
    2333         'code'        => array( 'css', 'html', 'php',  'js' ),
     2333        'code'        => array( 'css', 'htm',  'html', 'php',  'js' ),
    23342334    ));
    23352335    foreach ( $ext2type as $type => $exts )
     
    24362436        'odb' => 'application/vnd.oasis.opendocument.database',
    24372437        'odf' => 'application/vnd.oasis.opendocument.formula',
     2438        // wordperfect formats
     2439        'wp|wpd' => 'application/wordperfect',
    24382440        ) );
    24392441    }
Note: See TracChangeset for help on using the changeset viewer.