From 77c48682e114a63fe37c24fe1d80059cc5427c81 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Wed, 3 Nov 2021 17:42:29 +0100 Subject: [PATCH] bug drapeaux --- core/module/config/config.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/core/module/config/config.php b/core/module/config/config.php index 87e751f4..2cd6a7e2 100644 --- a/core/module/config/config.php +++ b/core/module/config/config.php @@ -527,7 +527,18 @@ class config extends common { 'captcha' => $this->getInput('configAdvancedConnectCaptcha',helper::FILTER_BOOLEAN), ], 'i18n' => [ - 'enable' => $this->getData(['config', 'i18n', 'enable']) + 'enable' => $this->getData(['config', 'i18n', 'enable']), + 'scriptGoogle' => $this->getData(['config', 'i18n', 'scriptGoogle']), + 'showCredits' => $this->getData(['config', 'i18n', 'showCredits']), + 'autoDetect' => $this->getData(['config', 'i18n', 'autoDetect']), + 'admin' => $this->getData(['config', 'i18n', 'admin']), + 'fr' => $this->getData(['config', 'i18n', 'fr']), + 'de' => $this->getData(['config', 'i18n', 'de']), + 'en' => $this->getData(['config', 'i18n', 'en']), + 'es' => $this->getData(['config', 'i18n', 'es']), + 'it' => $this->getData(['config', 'i18n', 'it']), + 'nl' => $this->getData(['config', 'i18n', 'nl']), + 'pt' => $this->getData(['config', 'i18n', 'pt']) ] ] ]);