Make WordPress Core

Changeset 14064


Ignore:
Timestamp:
04/11/2010 02:11:29 AM (15 years ago)
Author:
dd32
Message:

Add .tsv file format to Upload whitelist. Fixes #12757

File:
1 edited

Legend:

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

    r13962 r14064  
    23292329        'spreadsheet' => array( 'numbers',     'ods',  'xls',  'xlsx', 'xlsb',  'xlsm' ),
    23302330        'interactive' => array( 'key', 'ppt',  'pptx', 'pptm', 'odp',  'swf' ),
    2331         'text'        => array( 'asc', 'txt', 'csv' ),
     2331        'text'        => array( 'asc', 'csv',  'tsv',  'txt' ),
    23322332        'archive'     => array( 'bz2', 'cab',  'dmg',  'gz',   'rar',  'sea',   'sit', 'sqx', 'tar', 'tgz',  'zip' ),
    23332333        'code'        => array( 'css', 'html', 'php',  'js' ),
     
    23942394        'txt|asc|c|cc|h' => 'text/plain',
    23952395        'csv' => 'text/csv',
     2396        'tsv' => 'text/tab-separated-values',
    23962397        'rtx' => 'text/richtext',
    23972398        'css' => 'text/css',
Note: See TracChangeset for help on using the changeset viewer.