From ed0ab2f7ec01f3432e967cdc97ea1d3b8686328a Mon Sep 17 00:00:00 2001 From: Fred <23246457+fredtempez@users.noreply.github.com> Date: Mon, 7 Oct 2019 11:32:22 +0200 Subject: [PATCH 1/4] =?UTF-8?q?[9.2.09]=20D=C3=A9sactivation=20de=20l'aper?= =?UTF-8?q?=C3=A7u=20auto=20lors=20de=20la=20modification=20du=20texte=20p?= =?UTF-8?q?ersonnalis=C3=A9=20dans=20le=20footer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/vendor/tinymce/init.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/vendor/tinymce/init.js b/core/vendor/tinymce/init.js index 060d0c10..515fb8f6 100755 --- a/core/vendor/tinymce/init.js +++ b/core/vendor/tinymce/init.js @@ -5,11 +5,11 @@ tinymce.init({ // Classe où appliquer l'éditeur selector: ".editorWysiwyg", // Aperçu dans le pied de page - setup:function(ed) { - ed.on('change', function(e) { - $("#footerText").html(ed.getContent()); - }); - }, + // setup:function(ed) { + // ed.on('change', function(e) { + // $("#footerText").html(ed.getContent()); + // }); + //}, // Langue language: "fr_FR", // Plugins From 417deac31bdeb77e84e37f10333f41d88718369a Mon Sep 17 00:00:00 2001 From: Fred <23246457+fredtempez@users.noreply.github.com> Date: Mon, 7 Oct 2019 11:52:17 +0200 Subject: [PATCH 2/4] [9.2.09] --- CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 79e42f36..728217c8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ # Changelog ## Version 9.2.09 +- Correction : + - Thème, footer, texte personnalisé, désactivation de l'aperçu. + +## Version 9.2.08 - Correction : - Edition de page : bug empêchant le paramétrage d'un module après un changement de gabarit. - Modification : From 7fc1693735825e6ffaff232f7e78c4c71a6042cc Mon Sep 17 00:00:00 2001 From: Fred <23246457+fredtempez@users.noreply.github.com> Date: Mon, 7 Oct 2019 14:57:32 +0200 Subject: [PATCH 3/4] [9.2.09] Erreur d'initialisation dans form --- module/form/form.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/module/form/form.php b/module/form/form.php index 8713116d..81ed0c64 100644 --- a/module/form/form.php +++ b/module/form/form.php @@ -32,7 +32,7 @@ class form extends common { public static $pagination; - const FORM_VERSION = '1.9'; + const FORM_VERSION = '2.0'; const TYPE_MAIL = 'mail'; const TYPE_SELECT = 'select'; @@ -88,6 +88,8 @@ class form extends common { 'subject' => $this->getInput('formConfigSubject') ] ]); + // Génération des données vides + $this->setData(['module', $this->getUrl(0), 'data', []]); // Génération des champs $inputs = []; foreach($this->getInput('formConfigPosition', null) as $index => $position) { @@ -379,4 +381,4 @@ class form extends common { 'view' => 'index', ]); } -} \ No newline at end of file +} From b5fb1a6a9106e54320de6432915adbe4aa835b80 Mon Sep 17 00:00:00 2001 From: Fred <23246457+fredtempez@users.noreply.github.com> Date: Mon, 7 Oct 2019 15:12:24 +0200 Subject: [PATCH 4/4] [9.2.09] changes --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 728217c8..b5a78404 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ ## Version 9.2.09 - Correction : - Thème, footer, texte personnalisé, désactivation de l'aperçu. + - Module formulaire, suppression d'un warning à la première utilisation d'un nouveau formulaire ## Version 9.2.08 - Correction :