From c87face0a232bc4da3753a0a0355e3a61581565a Mon Sep 17 00:00:00 2001 From: fredtempez Date: Tue, 15 Mar 2022 09:57:56 +0100 Subject: [PATCH] init --- CHANGES.md | 4 ++++ README.md | 2 +- core/core.php | 9 +++++++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 4f9f6e82..69b0a08a 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ # Changelog +## Version 11.3.05 +### Correction : + - Dossier du fichier de fontes non créé empêchant la création du fichier des appels de fontes. + ## Version 11.3.04 ### Correction : - Duplication d'id dans le menu. diff --git a/README.md b/README.md index 9bdc898f..a88c8eb5 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ZwiiCMS 11.3.04 +# ZwiiCMS 11.3.05 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 dc38e1a5..fc048794 100644 --- a/core/core.php +++ b/core/core.php @@ -45,7 +45,7 @@ class common { // Numéro de version const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/'; - const ZWII_VERSION = '11.3.04'; + const ZWII_VERSION = '11.3.05'; const ZWII_UPDATE_CHANNEL = "v11"; public static $actions = []; @@ -2521,10 +2521,15 @@ class core extends common { $css .= '#footerText > p {text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}'; $css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}'; + // Enregistre les fontes + if (!is_dir(self::DATA_DIR . 'fonts')) { + mkdir(self::DATA_DIR . 'fonts'); + } + file_put_contents(self::DATA_DIR . 'fonts/fonts.html', $fontFile, ); // Enregistre la personnalisation file_put_contents(self::DATA_DIR.'theme.css', $css); - file_put_contents(self::DATA_DIR.'fonts/fonts.html', $fontFile); + // Effacer le cache pour tenir compte de la couleur de fond TinyMCE header("Expires: Tue, 01 Jan 2000 00:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");