From c3192404445ee078eb1832f91b063a6a7ac0ae2c Mon Sep 17 00:00:00 2001 From: fredtempez Date: Fri, 18 Dec 2020 15:05:36 +0100 Subject: [PATCH] Bug commentaires du blog --- CHANGES.md | 4 ++++ README.md | 2 +- core/core.php | 2 +- module/blog/blog.php | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b6fcabbf..61ae9a44 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ # Changelog +## Version 10.3.12 +Correction : + - Impossibilité de lister les commentaires des articles de blog dans la fenêtre de gestion. + ## Version 10.3.11 Modification : - Message sur l'utilisation des cookies diff --git a/README.md b/README.md index 54727620..557c8c18 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.11 +# ZwiiCMS 10.3.12 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 a07291f3..c407b26a 100755 --- a/core/core.php +++ b/core/core.php @@ -40,7 +40,7 @@ class common { const ACCESS_TIMER = 1800; // Numéro de version - const ZWII_VERSION = '10.3.11'; + const ZWII_VERSION = '10.3.12'; const ZWII_UPDATE_CHANNEL = "v10"; public static $actions = []; diff --git a/module/blog/blog.php b/module/blog/blog.php index 53192163..51066630 100755 --- a/module/blog/blog.php +++ b/module/blog/blog.php @@ -52,7 +52,7 @@ class blog extends common { public static $users = []; - const BLOG_VERSION = '2.10'; + const BLOG_VERSION = '2.11'; /** * Flux RSS @@ -159,7 +159,7 @@ class blog extends common { public function comment() { // Liste les commentaires $comments = []; - foreach((array) $this->getData(['module', $this->getUrl(0)]) as $articleId => $article) { + foreach((array) $this->getData(['module', $this->getUrl(0), 'posts']) as $articleId => $article) { foreach($article['comment'] as &$comment) { $comment['articleId'] = $articleId; }