Make WordPress Core

Ticket #12757: 12757.001.diff

File 12757.001.diff, 981 bytes (added by aaroncampbell, 14 years ago)

Support for tab separated files

  • wp-includes/functions.php

     
    23282328                'document'    => array( 'doc', 'docx', 'docm', 'dotm', 'odt',  'pages', 'pdf', 'rtf' ),
    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', 'txt', 'csv', 'tsv' ),
    23322332                'archive'     => array( 'bz2', 'cab',  'dmg',  'gz',   'rar',  'sea',   'sit', 'sqx', 'tar', 'tgz',  'zip' ),
    23332333                'code'        => array( 'css', 'html', 'php',  'js' ),
    23342334        ));
     
    23932393                'mpeg|mpg|mpe' => 'video/mpeg',
    23942394                'txt|asc|c|cc|h' => 'text/plain',
    23952395                'csv' => 'text/csv',
     2396                'tsv' => 'text/tsv',
    23962397                'rtx' => 'text/richtext',
    23972398                'css' => 'text/css',
    23982399                'htm|html' => 'text/html',