Skip to content
Snippets Groups Projects
Commit fe9fa64d authored by Jan Delius's avatar Jan Delius Committed by Andreas Fernandez
Browse files

[BUGFIX] Fix typo in UserElement.php

Correct configuration is in fieldConf

Resolves: #80423
Releases: master
Change-Id: I605b9c76367081f1332c6ad61d4c342216992f1d
Reviewed-on: https://review.typo3.org/52138


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Tested-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
parent 7b5621f0
Branches
Tags
No related merge requests found
......@@ -42,8 +42,8 @@ class UserElement extends AbstractFormElement
$parameterArray,
$this
);
if (!isset($parameterArray['fieldCong']['config']['noTableWrapping'])
|| (bool)$parameterArray['fieldCong']['config']['noTableWrapping'] === false
if (!isset($parameterArray['fieldConf']['config']['noTableWrapping'])
|| (bool)$parameterArray['fieldConf']['config']['noTableWrapping'] === false
) {
$html = '<div class="formengine-field-item t3js-formengine-field-item">' . $html . '</div>';
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment