Make WordPress Core


Ignore:
Timestamp:
06/21/2016 02:55:29 PM (8 years ago)
Author:
joemcgill
Message:

Media: Improve handling of extensionless filenames.

Merge of [37756] to the 4.2 branch.

See #37111.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2/src/wp-includes/formatting.php

    r33518 r37816  
    12091209 * to manipulate at the command line. Replaces spaces and consecutive
    12101210 * dashes with a single dash. Trims period, dash and underscore from beginning
    1211  * and end of filename.
     1211 * and end of filename. It is not guaranteed that this function will return a
     1212 * filename that is allowed to be uploaded.
    12121213 *
    12131214 * @since 2.1.0
     
    12331234    $filename = preg_replace( '/[\r\n\t -]+/', '-', $filename );
    12341235    $filename = trim( $filename, '.-_' );
     1236
     1237    if ( false === strpos( $filename, '.' ) ) {
     1238        $mime_types = wp_get_mime_types();
     1239        $filetype = wp_check_filetype( 'test.' . $filename, $mime_types );
     1240        if ( $filetype['ext'] === $filename ) {
     1241            $filename = 'unnamed-file.' . $filetype['ext'];
     1242        }
     1243    }
    12351244
    12361245    // Split the filename into a base and extension[s]
Note: See TracChangeset for help on using the changeset viewer.