From b87f18cb4ff769607a27052af7de57852c2fdfd2 Mon Sep 17 00:00:00 2001 From: ldestailleur Date: Mon, 15 Sep 2025 14:42:21 +0200 Subject: [PATCH] css --- htdocs/install/check.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/install/check.php b/htdocs/install/check.php index e7d14889d0d..aaf9eefe9ba 100644 --- a/htdocs/install/check.php +++ b/htdocs/install/check.php @@ -244,12 +244,12 @@ if (!class_exists('ZipArchive')) { if (!empty($extensionok)) { //print 'Ok '; print img_picto('', 'tick', 'class="pictofixedwidth"'); - print $langs->trans("PHPSupport", implode(', ', $extensionok))."
\n"; + print $langs->trans("PHPSupport", ''.implode(', ', $extensionok).'')."
\n"; } if (!empty($extensionko)) { //print 'Error '; print img_picto('', 'warning', 'class="pictofixedwidth error"'); - print $langs->trans("ErrorPHPDoesNotSupport", implode(', ', $extensionko))."
\n"; + print $langs->trans("ErrorPHPDoesNotSupport", ''.implode(', ', $extensionko).'')."
\n"; }