Skip to content

Commit c273067

Browse files
author
a.chorniy
committed
fix for system xml.
1 parent 1ad65a3 commit c273067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Config/Model/Config/Structure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ private function getFieldsRecursively(array $elements = [])
398398
$this->getFieldsRecursively($element['children'])
399399
);
400400
} else {
401-
if ($element['_elementType'] === 'field' && isset($element['label'])) {
401+
if ($element['_elementType'] === 'field') {
402402
$structurePath = (isset($element['path']) ? $element['path'] . '/' : '') . $element['id'];
403403
$configPath = isset($element['config_path']) ? $element['config_path'] : $structurePath;
404404

0 commit comments

Comments
 (0)