Changeset 5353 for trunk/wp-admin/admin-functions.php
- Timestamp:
- 04/30/2007 03:54:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-functions.php
r5308 r5353 1949 1949 1950 1950 // A correct MIME type will pass this test. Override $mimes or use the upload_mimes filter. 1951 if ( $test_type && !current_user_can( 'unfiltered_upload' )) {1951 if ( $test_type ) { 1952 1952 $wp_filetype = wp_check_filetype( $file['name'], $mimes ); 1953 1953 1954 1954 extract( $wp_filetype ); 1955 1955 1956 if ( !$type || !$ext)1956 if ( ( !$type || !$ext ) && !current_user_can( 'unfiltered_upload' ) ) 1957 1957 return $upload_error_handler( $file, __( 'File type does not meet security guidelines. Try another.' )); 1958 1959 if ( !$ext ) 1960 $ext = strrchr($file['name'], '.'); 1958 1961 } 1959 1962
Note: See TracChangeset
for help on using the changeset viewer.