From 58525f247e3953fee6dce08374ad53f4b27b9820 Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 27 Sep 2018 15:57:08 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B0917:=20AttributeDef=20CSS=20class?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/attributedef.class.inc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.'';