Changeset 37810
- Timestamp:
- 06/21/2016 02:51:38 PM (7 years ago)
- Location:
- branches/4.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4/src/wp-includes/formatting.php
r36428 r37810 1365 1365 * to manipulate at the command line. Replaces spaces and consecutive 1366 1366 * dashes with a single dash. Trims period, dash and underscore from beginning 1367 * and end of filename. 1367 * and end of filename. It is not guaranteed that this function will return a 1368 * filename that is allowed to be uploaded. 1368 1369 * 1369 1370 * @since 2.1.0 … … 1389 1390 $filename = preg_replace( '/[\r\n\t -]+/', '-', $filename ); 1390 1391 $filename = trim( $filename, '.-_' ); 1392 1393 if ( false === strpos( $filename, '.' ) ) { 1394 $mime_types = wp_get_mime_types(); 1395 $filetype = wp_check_filetype( 'test.' . $filename, $mime_types ); 1396 if ( $filetype['ext'] === $filename ) { 1397 $filename = 'unnamed-file.' . $filetype['ext']; 1398 } 1399 } 1391 1400 1392 1401 // Split the filename into a base and extension[s] -
branches/4.4/tests/phpunit/tests/formatting/SanitizeFileName.php
r35122 r37810 57 57 $this->assertEquals( 'a22b.jpg', sanitize_file_name( 'a%22b.jpg' ) ); 58 58 } 59 60 function test_replaces_unnammed_file_extensions() { 61 // Test filenames with both supported and unsupported extensions. 62 $this->assertEquals( 'unnamed-file.exe', sanitize_file_name( '_.exe' ) ); 63 $this->assertEquals( 'unnamed-file.jpg', sanitize_file_name( '_.jpg' ) ); 64 } 65 66 function test_replaces_unnammed_file_extensionless() { 67 // Test a filenames that becomes extensionless. 68 $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) ); 69 } 59 70 }
Note: See TracChangeset
for help on using the changeset viewer.