N°4701 - Fix meta-enums labels being double encoded when displayed

This commit is contained in:
Molkobain
2022-01-21 11:12:53 +01:00
parent 81c0951c2a
commit 7aa1719514

View File

@@ -5717,7 +5717,7 @@ class AttributeMetaEnum extends AttributeEnum
$aLocalizedValues = array();
foreach($aRawValues as $sKey => $sValue)
{
$aLocalizedValues[$sKey] = Str::pure2html($this->GetValueLabel($sKey));
$aLocalizedValues[$sKey] = $this->GetValueLabel($sKey);
}
return $aLocalizedValues;