diff --git a/CHANGES.md b/CHANGES.md index 153a7849..7671f40e 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Changelog +## Version 13.1.06 + +### Corrections + +- Ajout d'utilisateur, étiquette non sauvegardée. + ## Version 13.1.05 ### Corrections diff --git a/LISEZMOI.md b/LISEZMOI.md index 7085c53a..82858e74 100644 --- a/LISEZMOI.md +++ b/LISEZMOI.md @@ -1,4 +1,4 @@ -# ZwiiCMS 13.1.05 +# ZwiiCMS 13.1.06 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 f45dd388..7da0e59c 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ZwiiCMS 13.1.05 +# ZwiiCMS 13.1.06 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 d429a8a7..b8aa902e 100644 --- a/core/core.php +++ b/core/core.php @@ -51,7 +51,7 @@ class common const ACCESS_TIMER = 1800; // Numéro de version - const ZWII_VERSION = '13.1.05'; + const ZWII_VERSION = '13.1.06'; // URL autoupdate const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/cms-update/raw/branch/master/'; diff --git a/core/module/user/user.php b/core/module/user/user.php index ae56634e..93ffe63f 100644 --- a/core/module/user/user.php +++ b/core/module/user/user.php @@ -133,7 +133,7 @@ class user extends common 'accessTimer' => null, 'accessCsrf' => null, 'language' => $this->getInput('userAddLanguage', helper::FILTER_STRING_SHORT), - 'tags' => '' + 'tags' => $this->getInput('userAddTags', helper::FILTER_STRING_SHORT), ] ]);