fix database pre check

This commit is contained in:
Fred Tempez 2023-03-10 15:49:14 +01:00
parent 6e9f30719b
commit 2455ec0f28
1 changed files with 7 additions and 7 deletions

View File

@ -31,20 +31,20 @@ if (file_exists('site/data/core.json')) {
if ($version['core']['dataVersion'] < 12400) {
// Renommage les fichiers de données au pluriel
$t = [
'core/module/install/ressource/i18n/languages.json' => 'core/module/install/ressource/i18n/language.json',
'site/data/languages.json' => 'site/data/language.json',
'site/data/fonts.json' => 'site/data/font.json'
];
foreach ($d as $k => $v) {
foreach ($t as $k => $v) {
if (file_exists($k)) {
rename($k, $v);
$d = file_get_contents($v);
$d = str_replace(basename($k,'.json'), basename($v, '.json'));
file_put_contents($v);
$d = file_get_contents($k);
$d = str_replace(basename($k,'.json'), basename($v, '.json'), $d);
file_put_contents($v, $d);
}
}
if (file_exists('core/module/install/ressource/i18n/languages.json')) {
unlink ('core/module/install/ressource/i18n/languages.json');
}
}
}