bug pre update fresh install
bug slash
This commit is contained in:
parent
9395321f4a
commit
9d7e10604b
@ -1,27 +1,28 @@
|
||||
<?php
|
||||
|
||||
$version = json_decode(file_get_contents('site/data/core.json'), true);
|
||||
|
||||
|
||||
/**
|
||||
* Mise à jour avant v12
|
||||
* */
|
||||
if ($version['core']['dataVersion'] < 12000)
|
||||
{
|
||||
// Correspondance pour les dossiers de langue à convertir
|
||||
$languages = [
|
||||
'fr' => 'fr_FR',
|
||||
'en' => 'en_EN',
|
||||
'pt' => 'pt_PT'
|
||||
];
|
||||
// Convertit les dossiers vers la nouvelle structure
|
||||
foreach ($languages as $key => $value) {
|
||||
if (
|
||||
is_dir('site/data/' . $key) &&
|
||||
!is_dir('site/data/' . $value)
|
||||
) {
|
||||
$end = rename('site/data/' . $key, 'site/data/' . $value);
|
||||
|
||||
if (file_exists('site/data/core.json')) {
|
||||
$version = json_decode(file_get_contents('site/data/core.json'), true);
|
||||
|
||||
if ($version['core']['dataVersion'] < 12000) {
|
||||
// Correspondance pour les dossiers de langue à convertir
|
||||
$languages = [
|
||||
'fr' => 'fr_FR',
|
||||
'en' => 'en_EN',
|
||||
'pt' => 'pt_PT'
|
||||
];
|
||||
// Convertit les dossiers vers la nouvelle structure
|
||||
foreach ($languages as $key => $value) {
|
||||
if (
|
||||
is_dir('site/data/' . $key) &&
|
||||
!is_dir('site/data/' . $value)
|
||||
) {
|
||||
$end = rename('site/data/' . $key, 'site/data/' . $value);
|
||||
}
|
||||
}
|
||||
sleep(2);
|
||||
}
|
||||
sleep(2);
|
||||
}
|
@ -950,7 +950,7 @@ if ($this->getData(['core', 'dataVersion']) < 12300) {
|
||||
}
|
||||
|
||||
// Nettoyage de flatPickr
|
||||
$this->removeDir('core\vendor\flatpickr');
|
||||
$this->removeDir('core/vendor/flatpickr');
|
||||
|
||||
// Mise à jour
|
||||
$this->setData(['core', 'dataVersion', 12300]);
|
||||
|
Loading…
Reference in New Issue
Block a user