JS Uploader: "jpg" added to the list of allowed file extensions

This commit is contained in:
Michael 2024-06-16 14:35:19 +00:00
parent 7f0cf2527c
commit af868f45ab

View file

@ -50,7 +50,11 @@ function js_upload_post_init(array &$b)
// list of valid extensions
$allowedExtensions = [];
foreach (Images::IMAGETYPES as $type) {
$allowedExtensions[] = image_type_to_extension($type, false);
$extension = image_type_to_extension($type, false);
if ($extension == 'jpeg') {
$allowedExtensions[] = 'jpg';
}
$allowedExtensions[] = $extension;
}
// max file size in bytes