Make WordPress Core

Changeset 13962


Ignore:
Timestamp:
04/03/2010 08:24:13 AM (15 years ago)
Author:
nacin
Message:

Allow .csv. fixes #12757

File:
1 edited

Legend:

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

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