Ticket #4136: fix5303.diff
| File fix5303.diff, 778 bytes (added by technosailor, 6 years ago) |
|---|
-
wp-admin/admin-functions.php
1948 1948 return $upload_error_handler( $file, __( 'Specified file failed upload test.' )); 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 && current_user_can( 'unfiltered_upload' ) ) { 1952 1952 $wp_filetype = wp_check_filetype( $file['name'], $mimes ); 1953 1953 1954 1954 extract( $wp_filetype ); 1955 1955 1956 1956 if ( !$type || !$ext ) 1957 1957 return $upload_error_handler( $file, __( 'File type does not meet security guidelines. Try another.' )); 1958 1958 }
