From 6253385b1701c21f48bdbf466802078605aaff9b Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 19 Jan 2014 22:51:24 +0100 Subject: [PATCH] Fix: Thumbs was not visible when file was uploaded with extension in upper case. --- htdocs/core/class/html.formfile.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/html.formfile.class.php b/htdocs/core/class/html.formfile.class.php index 9c0968436d3..172d65b4ca6 100644 --- a/htdocs/core/class/html.formfile.class.php +++ b/htdocs/core/class/html.formfile.class.php @@ -796,7 +796,7 @@ class FormFile { print ''; $tmp=explode('.',$file['name']); - $minifile=$tmp[0].'_mini.'.$tmp[1]; + $minifile=$tmp[0].'_mini.'.strtolower($tmp[1]); // Thumbs are created with filename in lower case if (image_format_supported($file['name']) > 0) print ''; else print ' '; print '';