Media: Add flac to the list of allowed file types.

Props blobfolio.
Fixes #42225.

git-svn-id: https://develop.svn.wordpress.org/trunk@42451 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2018-01-15 22:16:33 +00:00
parent fb5b617056
commit 02ccaeed2c
3 changed files with 14 additions and 3 deletions

View File

@@ -1291,6 +1291,16 @@ class Tests_Functions extends WP_UnitTestCase {
'proper_filename' => false,
),
),
// FLAC file.
array(
DIR_TESTDATA . '/uploads/small-audio.flac',
'small-audio.flac',
array(
'ext' => 'flac',
'type' => 'audio/flac',
'proper_filename' => false,
),
),
)
);
}