1
0
Fork 0

Merge remote-tracking branch 'upstream/develop' into develop

This commit is contained in:
Roland Häder 2016-12-19 14:21:26 +01:00
commit 4615f39836
11 changed files with 11383 additions and 11229 deletions

View file

@ -548,9 +548,14 @@ function check_imagik(&$checks) {
$gif = true;
}
}
check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
if ($imagick) {
check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
if ($imagick == false) {
check_add($checks, t('ImageMagick PHP extension is not installed'), $imagick, false, "");
}
else {
check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
if ($imagick) {
check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
}
}
}