diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 0af2b0c4e5..2f96bfcda4 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -7237,10 +7237,10 @@ class AttributeTagSet extends AttributeSet * @return string * @throws \CoreException */ - private function GenerateViewHtmlForValues($aValues, $sCssClass = 'attribute-set') + private function GenerateViewHtmlForValues($aValues, $sCssClass = '') { if (empty($aValues)) {return '';} - $sHtml = ''; + $sHtml = ''; foreach($aValues as $oTag) { if ($oTag instanceof TagSetFieldData) @@ -9871,7 +9871,7 @@ class AttributeClassAttCodeSet extends AttributeSet } $value = $aLocalizedValues; } - return implode(', ', $value); + return implode(' ', $value); } return ''.$value.''; } @@ -10059,7 +10059,7 @@ class AttributeQueryAttCodeSet extends AttributeSet } $value = $aLocalizedValues; } - $value = implode(', ', $value); + $value = implode(' ', $value); } return ''.$value.'';