Skip to content
Snippets Groups Projects
Commit 51ea9bbb authored by Carsten  Rose's avatar Carsten Rose
Browse files

FillStoreForm.php: replace 'name' by FE_NAME

parent 318f0f30
No related branches found
No related tags found
No related merge requests found
...@@ -170,7 +170,7 @@ class FillStoreForm { ...@@ -170,7 +170,7 @@ class FillStoreForm {
foreach ($this->feSpecNative AS $formElement) { foreach ($this->feSpecNative AS $formElement) {
// Never get a predefined 'id' // Never get a predefined 'id'
if ($formElement['name'] === 'id') if ($formElement[FE_NAME] === 'id')
continue; continue;
// Preparation for Log, Debug // Preparation for Log, Debug
...@@ -180,18 +180,18 @@ class FillStoreForm { ...@@ -180,18 +180,18 @@ class FillStoreForm {
$formElement = $this->evaluate->parseArray($formElement, $skip, $debugStack); $formElement = $this->evaluate->parseArray($formElement, $skip, $debugStack);
// Get related formElement. Construct the field name used in the form. // Get related formElement. Construct the field name used in the form.
$clientFieldName = HelperFormElement::buildFormElementName($formElement['name'], $fakeRecordId); $clientFieldName = HelperFormElement::buildFormElementName($formElement, $fakeRecordId);
// Some Defaults // Some Defaults
$formElement = Support::setFeDefaults($formElement); $formElement = Support::setFeDefaults($formElement);
if ($formElement[FE_TYPE] === FE_TYPE_EXTRA) { if ($formElement[FE_TYPE] === FE_TYPE_EXTRA) {
// Extra elements will be transferred by SIP // Extra elements will be transferred by SIP
if (!isset($sipValues[$formElement['name']])) { if (!isset($sipValues[$formElement[FE_NAME]])) {
throw new CodeException("Missing the " . FE_TYPE_EXTRA . " field '" . $formElement['name'] . "' in SIP.", ERROR_MISSING_HIDDEN_FIELD_IN_SIP); throw new CodeException("Missing the " . FE_TYPE_EXTRA . " field '" . $formElement[FE_NAME] . "' in SIP.", ERROR_MISSING_HIDDEN_FIELD_IN_SIP);
} }
$newValues[$formElement['name']] = $sipValues[$formElement['name']]; $newValues[$formElement[FE_NAME]] = $sipValues[$formElement[FE_NAME]];
continue; continue;
} }
...@@ -217,15 +217,15 @@ class FillStoreForm { ...@@ -217,15 +217,15 @@ class FillStoreForm {
case 'datetime': case 'datetime':
case 'time': case 'time':
if ($clientValues[$clientFieldName] !== '') // do not check empty values if ($clientValues[$clientFieldName] !== '') // do not check empty values
$newValues[$formElement['name']] = $this->doDateTime($formElement, $clientValues[$clientFieldName]); $newValues[$formElement[FE_NAME]] = $this->doDateTime($formElement, $clientValues[$clientFieldName]);
break; break;
default: default:
// Check only if their is something // Check only if their is something
if($clientValues[$clientFieldName] !== '') { if($clientValues[$clientFieldName] !== '') {
$newValues[$formElement['name']] = Sanitize::sanitize($clientValues[$clientFieldName], $newValues[$formElement[FE_NAME]] = Sanitize::sanitize($clientValues[$clientFieldName],
$formElement['checkType'], $formElement['checkPattern'], SANATIZE_EXCEPTION); $formElement['checkType'], $formElement['checkPattern'], SANATIZE_EXCEPTION);
} else { } else {
$newValues[$formElement['name']] =''; $newValues[$formElement[FE_NAME]] = '';
} }
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment