Make WordPress Core


Ignore:
Timestamp:
01/15/2018 10:23:24 PM (7 years ago)
Author:
SergeyBiryukov
Message:

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

Props blobfolio.
Merges [42451] to the 4.9 branch.
Fixes #42225.

Location:
branches/4.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

  • branches/4.9/src/wp-includes/media.php

    r41937 r42452  
    21582158     *
    21592159     * @param array $extensions An array of support audio formats. Defaults are
    2160      *                          'mp3', 'ogg', 'm4a', 'wav'.
    2161      */
    2162     return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'm4a', 'wav' ) );
     2160     *                          'mp3', 'ogg', 'flac', 'm4a', 'wav'.
     2161     */
     2162    return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'flac', 'm4a', 'wav' ) );
    21632163}
    21642164
Note: See TracChangeset for help on using the changeset viewer.