diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2011-10-07 08:40:15 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-10-27 00:38:16 +0200 |
commit | e13aa67f3e8275d672dc08f21a3992e94bbe3038 (patch) | |
tree | 1d6fa5bad332515a16c0e6c4a055aa23fd2e402b /application/config/mimes.php | |
parent | b7263d152a3c29751e39fd74972707f62f51ca72 (diff) |
Fix #537 issue: replace new wav mimetype
Diffstat (limited to 'application/config/mimes.php')
-rw-r--r-- | application/config/mimes.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/config/mimes.php b/application/config/mimes.php index 82767d7c8..f00e5b6ed 100644 --- a/application/config/mimes.php +++ b/application/config/mimes.php @@ -65,8 +65,8 @@ $mimes = array( 'hqx' => 'application/mac-binhex40', 'rpm' => 'audio/x-pn-realaudio-plugin', 'ra' => 'audio/x-realaudio', 'rv' => 'video/vnd.rn-realvideo', - 'wav' => 'audio/x-wav', - 'bmp' => 'image/bmp', + 'wav' => array('audio/x-wav', 'audio/wave', 'audio/wav'), + 'bmp' => array('image/bmp', 'image/x-windows-bmp'), 'gif' => 'image/gif', 'jpeg' => array('image/jpeg', 'image/pjpeg'), 'jpg' => array('image/jpeg', 'image/pjpeg'), @@ -103,4 +103,4 @@ $mimes = array( 'hqx' => 'application/mac-binhex40', /* End of file mimes.php */ -/* Location: ./application/config/mimes.php */
\ No newline at end of file +/* Location: ./application/config/mimes.php */ |