diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-12-21 18:00:28 +0100 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-12-21 18:00:28 +0100 |
commit | 11eb2dcb181c4518d19646867e499c85d449208e (patch) | |
tree | ff39fb60aba71fe17a1fa5ad766a80898d8ea5e5 | |
parent | 1180efd6c035b77d678c2abf7215a4ef9894deb3 (diff) |
Fix: #236 Adding audio/mpeg3 as a valid mime type for mp3
-rw-r--r-- | application/config/mimes.php | 2 | ||||
-rw-r--r-- | user_guide/changelog.html | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/application/config/mimes.php b/application/config/mimes.php index f31fff2ec..146d3f9e0 100644 --- a/application/config/mimes.php +++ b/application/config/mimes.php @@ -56,7 +56,7 @@ $mimes = array( 'hqx' => 'application/mac-binhex40', 'midi' => 'audio/midi', 'mpga' => 'audio/mpeg', 'mp2' => 'audio/mpeg', - 'mp3' => array('audio/mpeg', 'audio/mpg'), + 'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3'), 'aif' => 'audio/x-aiff', 'aiff' => 'audio/x-aiff', 'aifc' => 'audio/x-aiff', diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 48f2ccf1d..68abaff27 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -162,6 +162,7 @@ Hg Tag: </p> <li>Documented db->close().</li> <li>Updated the router to support a default route with any number of segments.</li> <li>Moved _remove_invisible_characters() function from the <a href="libraries/security.html">Security Library</a> to <a href="general/common_functions.html">common functions.</a></li> + <li>Added audio/mpeg3 as a valid mime type for MP3.</li> </ul> </li> </ul> |