From cafef06b14bdcedeb001b68eb0936b3627553279 Mon Sep 17 00:00:00 2001 From: Shish Date: Tue, 9 Jan 2024 15:26:45 +0000 Subject: [PATCH] [core] avoid making convert show an error message --- core/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/util.php b/core/util.php index 432b8995..84e7555f 100644 --- a/core/util.php +++ b/core/util.php @@ -143,7 +143,7 @@ function check_gd_version(): int */ function check_im_version(): int { - $convert_check = exec("convert"); + $convert_check = exec("convert --version"); return (empty($convert_check) ? 0 : 1); }