This error message had me confused for about twenty minutes. I couldn't
figure out what was wrong with my imagick install that would make it give me an orange button if it was installed. Of course, the problem was that it wasn't installed, and the message was worded badly. This is a bit less confusing.
This commit is contained in:
parent
b3fa0a4e90
commit
a58d8d2c71
|
@ -548,9 +548,14 @@ function check_imagik(&$checks) {
|
||||||
$gif = true;
|
$gif = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
|
if ($imagick == false) {
|
||||||
if ($imagick) {
|
check_add($checks, t('ImageMagick PHP extension is not installed'), $imagick, false, "");
|
||||||
check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
|
}
|
||||||
|
else {
|
||||||
|
check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
|
||||||
|
if ($imagick) {
|
||||||
|
check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue