diff --git a/CHANGES.md b/CHANGES.md index 7bc8c21c..66efc4f4 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Changelog -## Version 12.3.00 +## Version 12.3.01 ### Améliorations : - Prise en charge PHP 8.2 - "Minification" de la sortie HTML. diff --git a/LISEZMOI.md b/LISEZMOI.md index cecf64e5..90172085 100644 --- a/LISEZMOI.md +++ b/LISEZMOI.md @@ -1,4 +1,4 @@ -# ZwiiCMS 12.3.00 +# ZwiiCMS 12.3.01 Zwii est un CMS sans base de données (flat-file) qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation. diff --git a/README.md b/README.md index 4d4b26ab..0f9b8e1d 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ZwiiCMS 12.3.00 +# ZwiiCMS 12.3.01 Zwii is a database-less (flat-file) CMS that allows you to easily create and manage a web site without any programming knowledge. diff --git a/core/core.php b/core/core.php index ed00f6ea..f3bda6d9 100644 --- a/core/core.php +++ b/core/core.php @@ -53,9 +53,9 @@ class common const ACCESS_TIMER = 1800; // Numéro de version et branche pour l'auto-update - const ZWII_VERSION = '12.3.00'; + const ZWII_VERSION = '12.3.01'; - const ZWII_DATAVERSION = 12300; + const ZWII_DATAVERSION = 12301; // URL autoupdate const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/'; diff --git a/core/include/update.inc.php b/core/include/update.inc.php index 4c02a60b..f76ea082 100644 --- a/core/include/update.inc.php +++ b/core/include/update.inc.php @@ -927,8 +927,8 @@ if ($this->getData(['core', 'dataVersion']) < 12000) { $this->setData(['core', 'dataVersion', 12000]); } -// Version 12.3.00 -if ($this->getData(['core', 'dataVersion']) < 12300) { +// Version 12.3.01 +if ($this->getData(['core', 'dataVersion']) < 12301) { // Valeur par défaut du délai de recherche de mise à jour en ligne $this->setData(['config', 'autoUpdateDelay', 86400]); @@ -943,5 +943,5 @@ if ($this->getData(['core', 'dataVersion']) < 12300) { $this->setData(['config', 'smtp', 'from', 'no-reply@' . str_replace('www.', '', $_SERVER['HTTP_HOST'])]); // Mise à jour - $this->setData(['core', 'dataVersion', 12300]); + $this->setData(['core', 'dataVersion', 12301]); } \ No newline at end of file