10400 #3

Merged
lapervenche merged 18 commits from ZwiiCMS-Team/ZwiiCMS:10400 into 10400 2021-02-09 20:02:50 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 3facabaeca - Show all commits

View File

@ -94,7 +94,7 @@ class form extends common {
$inputs = [];
foreach($this->getInput('formConfigPosition', null) as $index => $position) {
$inputs[] = [
'name' => $this->getInput('formConfigName[' . $index . ']'),
'name' => htmlspecialchars_decode($this->getInput('formConfigName[' . $index . ']'),ENT_QUOTES),
'position' => helper::filter($position, helper::FILTER_INT),
'required' => $this->getInput('formConfigRequired[' . $index . ']', helper::FILTER_BOOLEAN),
'type' => $this->getInput('formConfigType[' . $index . ']'),