Version 12.3.01

This commit is contained in:
Fred Tempez 2023-03-12 10:17:31 +01:00
parent b39c74c3de
commit 762b89af38
5 changed files with 8 additions and 8 deletions

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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/';

View File

@ -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]);
}