From 1bf39aa092f3faf4ff5531ee325097caabd2f9c2 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Wed, 3 Oct 2018 10:53:34 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B0931=20fix=20XML=20export=20(node=20was?= =?UTF-8?q?=20always=20empty)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/attributedef.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index bf77caa21..4da079129 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -9925,7 +9925,7 @@ class AttributeTagSet extends AttributeSet { $aValues = $value->GetValues(); } - if (!empty($aValuess)) + if (!empty($aValues)) { $sRes .= ''.implode('', $aValues).''; }