sebsauvage / MinigalNano

GNU Affero General Public License v3.0
161 stars 50 forks source link

Thumbnail for image with jpeg extension not take into account #128

Open jerrywham opened 5 years ago

jerrywham commented 5 years ago

If extension for image is jpeg and not jpg, thumbnail is not display. To fix this issue, you have to change the regex line 272 in index.php

if (preg_match("/.jpg$|.gif$|.png$/i", $file)) {
(...)

to

if (preg_match("/.jpe?g$|.gif$|.png$/i", $file)) {
(...)