Disable imagick for 5.3, 5.4 and 5.5 due to segfaults

This commit is contained in:
cytopia
2019-11-18 23:48:06 +01:00
parent 83124e8632
commit 7f3a6f3e64
6 changed files with 6 additions and 61 deletions

View File

@@ -8,8 +8,8 @@ ini_set('display_errors', 1);
error_reporting(-1);
// Only available since 5.3.0
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
// Only available since 5.3.0 (PHP 5.3, 5.4 and 5.5 segfaults)
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
echo 'OK';
exit(0);
}