Skip to content

Commit

Permalink
HOTFIX/Fixing XML root node name for os2forms
Browse files Browse the repository at this point in the history
  • Loading branch information
stankut committed Mar 24, 2021
1 parent e8e7e65 commit e53b6f2
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ class WebformAttachmentSbsysXml extends WebformAttachmentXml {
* {@inheritdoc}
*/
public static function getXmlContext() {
return parent::getXmlContext() + [
'xml_root_node_name' => 'os2formsFormular',
];
$xmlContext = parent::getXmlContext();
$xmlContext['xml_root_node_name'] = 'os2formsFormular';

return $xmlContext;
}

/**
Expand Down

0 comments on commit e53b6f2

Please sign in to comment.