diff options
author | Andrey Andreev <narf@devilix.net> | 2020-03-30 10:50:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 10:50:47 +0200 |
commit | 46bde01bc2f8bac129fc21646d0a1dfde0b3dd65 (patch) | |
tree | 515072859b8a942c4f904a48f89ca87d8f4d271a /application/config/mimes.php | |
parent | c5c991d659cf731b22f1eec18bc9290acea6d36b (diff) | |
parent | 53c6c92dc73d2729c136a8868b0c16921240ba2a (diff) |
[ci skip] Merge pull request #5907 from pkarunyu/develop
Fixed double spacing in mimes.php
Diffstat (limited to 'application/config/mimes.php')
-rw-r--r-- | application/config/mimes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/config/mimes.php b/application/config/mimes.php index 7aa5c9e4e..88a621a19 100644 --- a/application/config/mimes.php +++ b/application/config/mimes.php @@ -5,7 +5,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); | ------------------------------------------------------------------- | MIME TYPES | ------------------------------------------------------------------- -| This file contains an array of mime types. It is used by the +| This file contains an array of mime types. It is used by the | Upload class to help identify allowed file types. | */ @@ -85,7 +85,7 @@ return array( 'jpm' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), 'mj2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), 'mjp2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), - 'png' => array('image/png', 'image/x-png'), + 'png' => array('image/png', 'image/x-png'), 'tiff' => 'image/tiff', 'tif' => 'image/tiff', 'css' => array('text/css', 'text/plain'), |