diff --git a/CHANGES.md b/CHANGES.md index f91dda8f..b3599a36 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changelog +## version 10.3.02 +- Modifications : + - Nouvelles images de captcha. + - Option de configuration, captcha demandé à la connexion. + ## version 10.3.01 - Corrections : - Configuration du site : diff --git a/README.md b/README.md index ca402be9..56fe236c 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![](https://img.shields.io/github/last-commit/fredtempez/ZwiiCMS/master) ![](https://img.shields.io/github/release-date/fredtempez/ZwiiCMS) -# ZwiiCMS 10.3.01 +# ZwiiCMS 10.3.02 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/core/core.php b/core/core.php index 7be5e342..3566f969 100644 --- a/core/core.php +++ b/core/core.php @@ -1415,6 +1415,12 @@ class common { } $this->setData(['core', 'dataVersion', 10301]); } + // Version 10.3.02 + if ($this->getData(['core', 'dataVersion']) < 10302) { + // Activation par défaut du captcha à la connexion + $this->setData(['config', 'connect','captcha', true]); + $this->setData(['core', 'dataVersion', 10302]); + } } }