Merge pull request #37397 from nextcloud/check-exif

pull/37413/head
John Molakvoæ 1 year ago committed by GitHub
commit e493e72ffb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -724,6 +724,12 @@ Raw output
$recommendedPHPModules[] = 'sysvsem';
}
if (!extension_loaded('exif')) {
// used to extract metadata from images
// required for correct orientation of preview images
$recommendedPHPModules[] = 'exif';
}
if (!defined('PASSWORD_ARGON2I')) {
// Installing php-sodium on >=php7.4 will provide PASSWORD_ARGON2I
// on previous version argon2 wasn't part of the "standard" extension

Loading…
Cancel
Save