diff --git a/htdocs/install/check.php b/htdocs/install/check.php
index c864afeb648..adbe7759f4e 100644
--- a/htdocs/install/check.php
+++ b/htdocs/install/check.php
@@ -122,8 +122,8 @@ else
}
-// Check if GD supported
-/*if (! function_exists("imagecreate"))
+// Check if GD supported (we need GD for image conversion)
+if (! function_exists("imagecreate"))
{
$langs->load("errors");
print '
'.$langs->trans("ErrorPHPDoesNotSupportGD")."
\n";
@@ -132,7 +132,7 @@ else
else
{
print '
'.$langs->trans("PHPSupportGD")."
\n";
-}*/
+}
// Check if Curl supported