From 2a5210278fe392887277ab82fc68817217a4e38e Mon Sep 17 00:00:00 2001 From: Adam Vessey Date: Wed, 15 May 2013 13:15:54 -0300 Subject: [PATCH] Fix the "TIFF" mimetype. Was causing issues in the batch importer. --- includes/mime_detect.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/mime_detect.inc b/includes/mime_detect.inc index 0914f62b..386bbf94 100644 --- a/includes/mime_detect.inc +++ b/includes/mime_detect.inc @@ -148,7 +148,7 @@ class MimeDetect { "jp2" => "image/jp2", "png" => "image/png", "tiff" => "image/tiff", - "tif" => "image/tif", + "tif" => "image/tiff", "djvu" => "image/vnd.djvu", "djv" => "image/vnd.djvu", "wbmp" => "image/vnd.wap.wbmp",