Changeset 37818
- Timestamp:
- 06/21/2016 02:56:43 PM (8 years ago)
- Location:
- branches/4.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1/src/wp-includes/formatting.php
r33521 r37818 1156 1156 * to manipulate at the command line. Replaces spaces and consecutive 1157 1157 * dashes with a single dash. Trims period, dash and underscore from beginning 1158 * and end of filename. 1158 * and end of filename. It is not guaranteed that this function will return a 1159 * filename that is allowed to be uploaded. 1159 1160 * 1160 1161 * @since 2.1.0 … … 1180 1181 $filename = preg_replace( '/[\r\n\t -]+/', '-', $filename ); 1181 1182 $filename = trim( $filename, '.-_' ); 1183 1184 if ( false === strpos( $filename, '.' ) ) { 1185 $mime_types = wp_get_mime_types(); 1186 $filetype = wp_check_filetype( 'test.' . $filename, $mime_types ); 1187 if ( $filetype['ext'] === $filename ) { 1188 $filename = 'unnamed-file.' . $filetype['ext']; 1189 } 1190 } 1182 1191 1183 1192 // Split the filename into a base and extension[s] -
branches/4.1/tests/phpunit/tests/formatting/SanitizeFileName.php
r29290 r37818 50 50 $this->assertEquals("a-t", sanitize_file_name("a \n\n\nt")); 51 51 } 52 53 function test_replaces_unnammed_file_extensions() { 54 // Test filenames with both supported and unsupported extensions. 55 $this->assertEquals( 'unnamed-file.exe', sanitize_file_name( '_.exe' ) ); 56 $this->assertEquals( 'unnamed-file.jpg', sanitize_file_name( '_.jpg' ) ); 57 } 58 59 function test_replaces_unnammed_file_extensionless() { 60 // Test a filenames that becomes extensionless. 61 $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) ); 62 } 52 63 }
Note: See TracChangeset
for help on using the changeset viewer.