Skip to content
Snippets Groups Projects

Issue #3028162: Added a test for multiple values.

Files
5
@@ -75,7 +75,7 @@ class SimpleXml extends DataParserPluginBase {
foreach ($this->fieldSelectors() as $field_name => $xpath) {
foreach ($target_element->xpath($xpath) as $value) {
if ($value->children() && !trim((string) $value)) {
$this->currentItem[$field_name] = $value;
$this->currentItem[$field_name][] = $value;
}
else {
$this->currentItem[$field_name][] = (string) $value;
Loading