From 9d32fa2b8655233e8e3520e6b5ef7da549747bfb Mon Sep 17 00:00:00 2001 From: fredtempez Date: Tue, 14 May 2024 13:13:56 +0200 Subject: [PATCH] 13.3.02 --- CHANGES.md | 2 +- LISEZMOI.md | 2 +- README.md | 2 +- core/core.php | 2 +- module/blog/blog.php | 6 ++++-- module/blog/changes.md | 2 +- module/news/changes.md | 2 +- module/news/news.php | 6 ++++-- 8 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 9ba3394d..92de0c6d 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,7 @@ # Changelog -## Version 13.3.01 +## Versions 13.3.01 - 13.2.02 Livraison des modules blogs et news corrigeant un problème de flux RSS avec des méta vides. diff --git a/LISEZMOI.md b/LISEZMOI.md index a466a15b..bd8d7f6f 100644 --- a/LISEZMOI.md +++ b/LISEZMOI.md @@ -1,4 +1,4 @@ -# ZwiiCMS 13.3.01 +# ZwiiCMS 13.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/README.md b/README.md index 72dc93eb..14435e9d 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ZwiiCMS 13.3.01 +# ZwiiCMS 13.3.02 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 53ab2e24..96908293 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.01'; + const ZWII_VERSION = '13.3.02'; // 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 c6fa2f30..260b422f 100755 --- a/module/blog/blog.php +++ b/module/blog/blog.php @@ -16,7 +16,7 @@ class blog extends common { - const VERSION = '7.8'; + const VERSION = '7.9'; const REALNAME = 'Blog'; const DELETE = true; const UPDATE = '0.0'; @@ -198,7 +198,9 @@ class blog extends common // En-tête $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']) ? $this->getData(['page', $this->getUrl(0), 'metaDescription']): ''); + if ($this->getData(['page', $this->getUrl(0), 'metaDescription'])) { + $feeds->setDescription($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 b25646a0..d16cc773 100755 --- a/module/blog/changes.md +++ b/module/blog/changes.md @@ -1,5 +1,5 @@ -# Version 7.8 +# Versions 7.8 - 7.9 - 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. diff --git a/module/news/changes.md b/module/news/changes.md index 192be026..3884393b 100644 --- a/module/news/changes.md +++ b/module/news/changes.md @@ -1,4 +1,4 @@ -# Version 5.7 +# Versions 5.7 - 5.8 - 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. diff --git a/module/news/news.php b/module/news/news.php index 63f582bd..e34e49b0 100644 --- a/module/news/news.php +++ b/module/news/news.php @@ -16,7 +16,7 @@ class news extends common { - const VERSION = '5.7'; + const VERSION = '5.8'; const REALNAME = 'News'; const DATADIRECTORY = self::DATA_DIR . 'news/'; @@ -126,7 +126,9 @@ class news extends common // En-tête $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']) ? $this->getData(['page', $this->getUrl(0), 'metaDescription']): ''); + if ($this->getData(['page', $this->getUrl(0), 'metaDescription'])) { + $feeds->setDescription($this->getData(['page', $this->getUrl(0), 'metaDescription'])); + }; $feeds->setChannelElement('language', 'fr-FR'); $feeds->setDate(date('r', time())); $feeds->addGenerator();