Bugs de slash

This commit is contained in:
Fred Tempez 2023-02-18 08:57:08 +01:00
parent 573e67e790
commit 9c2cea92b7
3 changed files with 7 additions and 7 deletions

View File

@ -891,8 +891,8 @@ if ($this->getData(['core', 'dataVersion']) < 12000) {
helper::deleteCookie('ZWII_CONTENTSCRIPT');
// Nettoyage de fichiers inutiles
if (file_exists('core\module\user\view\import\import.help.html')) {
unlink('core\module\user\view\import\import.help.html');
if (file_exists('core/module/user/view/import/import.help.html')) {
unlink('core/module/user/view/import/import.help.html');
}
// Supprimer les fichier associés
@ -932,8 +932,8 @@ if ($this->getData(['core', 'dataVersion']) < 12300) {
// Valeur par défaut du délai de recherche de mise à jour en ligne
$this->setData(['config', 'autoUpdateDelay', 86400]);
// Changement de nom des fichiers de langue greque
if (file_exists('core\module\install\ressource\i18n\gr_GR.json')) {
unlink('core\module\install\ressource\i18n\gr_GR.json');
if (file_exists('core/module/install/ressource/i18n/gr_GR.json')) {
unlink('core/module/install/ressource/i18n/gr_GR.json');
}
if (file_exists(self::I18N_DIR . 'gr_GR.json')) {
rename(self::I18N_DIR . 'gr_GR.json', self::I18N_DIR . 'el_GR.json');

View File

@ -382,7 +382,7 @@ class install extends common
$installedUI = $this->getData(['languages']);
// Langues disponibles avec la mise à jour
$store = json_decode(file_get_contents('core\module\install\ressource\i18n\languages.json'), true);
$store = json_decode(file_get_contents('core/module/install/ressource/i18n/languages.json'), true);
$store = $store['languages'];
foreach ($installedUI as $key => $value) {

View File

@ -176,7 +176,7 @@ class translate extends common
$installedUI = $this->getData(['languages']);
// Langues disponibles avec la mise à jour
$store = json_decode(file_get_contents('core\module\install\ressource\i18n\languages.json'), true);
$store = json_decode(file_get_contents('core/module/install/ressource/i18n/languages.json'), true);
$store = $store['languages'];
if ($installedUI) {
foreach($installedUI as $key => $value) {
@ -202,7 +202,7 @@ class translate extends common
}
self::$languagesInstalled[] = [
template::flag($key, '20 %') . '&nbsp;' . $value . ' (' . $key . ')',
$messageLocale,
$messageLocale,
template::button('translateContentLanguageLocaleEdit' . $key, [
'class' => file_exists(self::DATA_DIR . $key . '/locale.json') ? '' : ' disabled',
'href' => helper::baseUrl() . $this->getUrl(0) . '/locale/' . $key,