Revert [30640], as it was incorrectly checking some filenames.

git-svn-id: https://develop.svn.wordpress.org/trunk@32171 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2015-04-20 06:38:08 +00:00
parent 98da14ab75
commit 332750a40d
2 changed files with 1 additions and 11 deletions

View File

@ -2053,7 +2053,7 @@ function wp_check_filetype( $filename, $mimes = null ) {
$ext = false;
foreach ( $mimes as $ext_preg => $mime_match ) {
$ext_preg = '!\.(' . $ext_preg . ')(\?.*)?$!i';
$ext_preg = '!\.(' . $ext_preg . ')$!i';
if ( preg_match( $ext_preg, $filename, $ext_matches ) ) {
$type = $mime_match;
$ext = $ext_matches[1];

View File

@ -531,16 +531,6 @@ VIDEO;
$this->assertEquals( 0, $post_id );
}
function test_wp_check_filetype() {
$url = 'http://example.com/testFile.mp4?autoplay=true&otherstuff=false';
$filetype = wp_check_filetype( $url );
$expected = array(
'ext' => 'mp4',
'type' => 'video/mp4'
);
$this->assertEquals( $expected, $filetype );
}
/**
* @ticket 22768
*/