N°931 fix XML export (node was always empty)

This commit is contained in:
Pierre Goiffon
2018-10-03 10:53:34 +02:00
parent 3387d8fdd2
commit 1bf39aa092

View File

@@ -9925,7 +9925,7 @@ class AttributeTagSet extends AttributeSet
{
$aValues = $value->GetValues();
}
if (!empty($aValuess))
if (!empty($aValues))
{
$sRes .= '<Tag>'.implode('</Tag><Tag>', $aValues).'</Tag>';
}