From 4f7b7aebd0b9d7e2162a246fd76acdb458665ee0 Mon Sep 17 00:00:00 2001 From: v-dumas Date: Mon, 1 Jun 2026 12:47:24 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B09553=20-=20fix=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/moduleinstaller.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/moduleinstaller.class.inc.php b/setup/moduleinstaller.class.inc.php index 4761faf625..773525896f 100644 --- a/setup/moduleinstaller.class.inc.php +++ b/setup/moduleinstaller.class.inc.php @@ -395,7 +395,7 @@ abstract class ModuleInstallerAPI $sLang = str_replace(' ', '_', strtolower($sLanguage)); $sFileName = str_replace('{{language_code}}', $sLang, $sFilePattern); if (!file_exists($sFileName)) { - etupLog::Debug("No data file found matching the pattern $sFilePattern and language_code $sLang. Trying with 'en_us' as fallback."); + SetupLog::Debug("No data file found matching the pattern $sFilePattern and language_code $sLang. Trying with 'en_us' as fallback."); $sLang = 'en_us'; $sFileName = str_replace('{{language_code}}', $sLang, $sFilePattern); }