From 83fa62a386a9c72afb8a784efbdeea445c5cd839 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 8 Jun 2022 16:08:18 +0200 Subject: [PATCH] add imagick to list of required php extensions, sqlite -> sqlite3 --- views/bootstrap/class.Info.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Info.php b/views/bootstrap/class.Info.php index 17d36a385..e7623c98a 100644 --- a/views/bootstrap/class.Info.php +++ b/views/bootstrap/class.Info.php @@ -111,7 +111,7 @@ class SeedDMS_View_Info extends SeedDMS_Theme_Style { echo "".getMLText("name"); echo "\n"; echo "\n\n\n"; - $requiredext = array('zip', 'xml', 'xsl', 'json', 'intl', 'fileinfo', 'mbstring', 'curl', 'sqlite'); + $requiredext = array('zip', 'xml', 'xsl', 'json', 'intl', 'fileinfo', 'mbstring', 'curl', 'sqlite3', 'imagick'); foreach(array_diff($requiredext, $phpextensions) as $extname) echo "".$extname.""."\n"; echo "\n\n";