From ca15d8f362b0e7d3289b83fb23c59ef9acacdfaa Mon Sep 17 00:00:00 2001 From: fredtempez Date: Wed, 8 May 2024 18:42:10 +0200 Subject: [PATCH] 13.3.01 --- CHANGES.md | 6 +++++- LISEZMOI.md | 2 +- README.md | 2 +- core/core.php | 2 +- module/blog/blog.php | 6 +++--- module/blog/changes.md | 3 +++ module/news/changes.md | 2 ++ module/news/news.php | 6 +++--- 8 files changed, 19 insertions(+), 10 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7c088fe6..dbcf68de 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ # Changelog +## Version 13.3.01 + +Livraision des modules blogs et news corrigeant un problème de flux RSS avec des méta vides. + ## Version 13.3.00 Cette modification évite les problèmes d'édition de langues différentes dans des onglets différents du même navigateur. @@ -20,7 +24,7 @@ Modification de la fonction d'écriture des données de la classe jsonDB dans le ### Corrections - Corrige des erreurs quand une page parente ou des pages enfants ont des permissions limitées. -- Module Search 3.1 : initialisation du module après installation dans une page sans configration par l'utilisateur. +- Module Search 3.1 : initialisation du module après installation dans une page sans configuration par l'utilisateur. ### Améliorations diff --git a/LISEZMOI.md b/LISEZMOI.md index 72eb6e30..a466a15b 100644 --- a/LISEZMOI.md +++ b/LISEZMOI.md @@ -1,4 +1,4 @@ -# ZwiiCMS 13.3.00 +# ZwiiCMS 13.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 309a4b7c..72dc93eb 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ZwiiCMS 13.3.00 +# ZwiiCMS 13.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 8bdcca18..53ab2e24 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.3.00'; + const ZWII_VERSION = '13.3.01'; // URL autoupdate const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/cms-update/raw/branch/master/'; diff --git a/module/blog/blog.php b/module/blog/blog.php index acfbb90a..c6fa2f30 100755 --- a/module/blog/blog.php +++ b/module/blog/blog.php @@ -16,7 +16,7 @@ class blog extends common { - const VERSION = '7.7'; + const VERSION = '7.8'; const REALNAME = 'Blog'; const DELETE = true; const UPDATE = '0.0'; @@ -196,9 +196,9 @@ class blog extends common $feeds = new \FeedWriter\RSS2(); // En-tête - $feeds->setTitle($this->getData(['page', $this->getUrl(0), 'title'])); + $feeds->setTitle($this->getData(['page', $this->getUrl(0), 'title']) ? $this->getData(['page', $this->getUrl(0), 'title']): ''); $feeds->setLink(helper::baseUrl() . $this->getUrl(0)); - $feeds->setDescription($this->getData(['page', $this->getUrl(0), 'metaDescription'])); + $feeds->setDescription($this->getData(['page', $this->getUrl(0), 'metaDescription']) ? $this->getData(['page', $this->getUrl(0), 'metaDescription']): ''); $feeds->setChannelElement('language', 'fr-FR'); $feeds->setDate(date('r', time())); $feeds->addGenerator(); diff --git a/module/blog/changes.md b/module/blog/changes.md index e528a6f4..b25646a0 100755 --- a/module/blog/changes.md +++ b/module/blog/changes.md @@ -1,3 +1,6 @@ + +# Version 7.8 +- Le flux RSS ne fonctionne pas si les méta de la page sont vides. # Version 7.7 - Contrôle de la variable de session liée au contenu. Evite des erreurs lorsque plusieurs onglets sont ouverts. # Version 7.6 diff --git a/module/news/changes.md b/module/news/changes.md index fb3d1124..192be026 100644 --- a/module/news/changes.md +++ b/module/news/changes.md @@ -1,3 +1,5 @@ +# Version 5.7 +- Le flux RSS ne fonctionne pas si les méta de la page sont vides. # Version 5.6 - Contrôle de la variable de session liée au contenu. Evite des erreurs lorsque plusieurs onglets sont ouverts. # Version 5.5 diff --git a/module/news/news.php b/module/news/news.php index fa91ce9d..63f582bd 100644 --- a/module/news/news.php +++ b/module/news/news.php @@ -16,7 +16,7 @@ class news extends common { - const VERSION = '5.6'; + const VERSION = '5.7'; const REALNAME = 'News'; const DATADIRECTORY = self::DATA_DIR . 'news/'; @@ -124,9 +124,9 @@ class news extends common $feeds = new \FeedWriter\RSS2(); // En-tête - $feeds->setTitle($this->getData(['page', $this->getUrl(0), 'title'])); + $feeds->setTitle($this->getData(['page', $this->getUrl(0), 'title']) ? $this->getData(['page', $this->getUrl(0), 'title']): ''); $feeds->setLink(helper::baseUrl() . $this->getUrl(0)); - $feeds->setDescription($this->getData(['page', $this->getUrl(0), 'metaDescription'])); + $feeds->setDescription($this->getData(['page', $this->getUrl(0), 'metaDescription']) ? $this->getData(['page', $this->getUrl(0), 'metaDescription']): ''); $feeds->setChannelElement('language', 'fr-FR'); $feeds->setDate(date('r', time())); $feeds->addGenerator();