~canonical-sysadmins/wordpress/5.0.3

« back to all changes in this revision

Viewing changes to wp-includes/media.php

  • Committer: axino
  • Date: 2018-01-25 07:47:10 UTC
  • Revision ID: axino@canonical.com-20180125074710-0m0j5dc8ldu3ou9t
update to wordpress 4.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2157
2157
         * @since 3.6.0
2158
2158
         *
2159
2159
         * @param array $extensions An array of support audio formats. Defaults are
2160
 
         *                          'mp3', 'ogg', 'm4a', 'wav'.
 
2160
         *                          'mp3', 'ogg', 'flac', 'm4a', 'wav'.
2161
2161
         */
2162
 
        return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'm4a', 'wav' ) );
 
2162
        return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'flac', 'm4a', 'wav' ) );
2163
2163
}
2164
2164
 
2165
2165
/**