10.2.07 bug flatpickr dans le module formulaire

This commit is contained in:
Fred Tempez 2020-08-21 18:01:55 +02:00
parent 2c61f2a0b7
commit 707397f3ec
2 changed files with 13 additions and 3 deletions

View File

@ -1,9 +1,13 @@
# Changelog # Changelog
## version 10.2.07
- Correction :
- Défaut de chargement de flatpickr dans le module formulaire qui passe en version 2.4
## version 10.2.06 ## version 10.2.06
- Corrections : - Corrections :
- Anticipation de la dépréciation de l'option de cookie samesite=none. - Anticipation de la dépréciation de l'option de cookie samesite=none.
- Warning : absence de fichier map dans le thème TinyMCE lightgray - Warning : absence de fichier map dans le thème TinyMCE lightgray.
## version 10.2.05 ## version 10.2.05
- Correction : - Correction :

View File

@ -32,7 +32,7 @@ class form extends common {
public static $pagination; public static $pagination;
const FORM_VERSION = '2.3'; const FORM_VERSION = '2.4';
// Objets // Objets
const TYPE_MAIL = 'mail'; const TYPE_MAIL = 'mail';
@ -382,7 +382,10 @@ class form extends common {
$this->addOutput([ $this->addOutput([
'notification' => ($sent === true ? 'Formulaire soumis' : $sent), 'notification' => ($sent === true ? 'Formulaire soumis' : $sent),
'redirect' => $redirect ? helper::baseUrl() . $redirect : '', 'redirect' => $redirect ? helper::baseUrl() . $redirect : '',
'state' => ($sent === true ? true : null) 'state' => ($sent === true ? true : null),
'vendor' => [
'flatpickr'
],
]); ]);
} }
// Valeurs en sortie // Valeurs en sortie
@ -390,6 +393,9 @@ class form extends common {
'showBarEditButton' => true, 'showBarEditButton' => true,
'showPageContent' => true, 'showPageContent' => true,
'view' => 'index', 'view' => 'index',
'vendor' => [
'flatpickr'
],
]); ]);
} }
} }