This commit is contained in:
Fred Tempez 2022-09-30 11:09:06 +02:00
parent ad87c35d35
commit 1ed9c0fae1
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ class common
// Numéro de version
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/';
const ZWII_VERSION = '11.6.00-dev008';
const ZWII_VERSION = '12.0.00-dev008';
const ZWII_UPDATE_CHANNEL = "test";
public static $actions = [];

View File

@ -857,7 +857,7 @@ if ($this->getData(['core', 'dataVersion']) < 11506) {
// Version 11.6.00
if ($this->getData(['core', 'dataVersion']) < 11600) {
if ($this->getData(['core', 'dataVersion']) < 12000) {
// Correspondance pour les dossiers de langue à convertir
$languages = [
@ -917,5 +917,5 @@ if ($this->getData(['core', 'dataVersion']) < 11600) {
$this->setData(['config', 'i18n', 'interface', 'fr_FR']);
// Mise à jour
$this->setData(['core', 'dataVersion', 11600]);
$this->setData(['core', 'dataVersion', 12000]);
}