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 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 +}