diff options
author | Éderson <edersonszlachta@gmail.com> | 2015-06-22 21:52:45 +0200 |
---|---|---|
committer | Éderson <edersonszlachta@gmail.com> | 2015-06-22 21:52:45 +0200 |
commit | fb108204d198c9dc1d964cabe5c29ae106a25216 (patch) | |
tree | 3af9eaf370d326d1766c7490ac01f9898748e14c | |
parent | 3022d17866281b76ac754aad28dbe61a8a12887d (diff) |
Added .ico mime type
Just added ico to mime list
-rw-r--r-- | application/config/mimes.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/application/config/mimes.php b/application/config/mimes.php index 78d8e53e3..f9b74bfb2 100644 --- a/application/config/mimes.php +++ b/application/config/mimes.php @@ -154,5 +154,6 @@ return array( 'svg' => array('image/svg+xml', 'application/xml', 'text/xml'), 'vcf' => 'text/x-vcard', 'srt' => array('text/srt', 'text/plain'), - 'vtt' => array('text/vtt', 'text/plain') + 'vtt' => array('text/vtt', 'text/plain'), + 'ico' => 'image/x-icon' ); |