Index: branches/unlabeled/unlabeled-1.1.2/core/units/selectors/selectors_tag_processor.php =================================================================== diff -u -r1422 -r1484 --- branches/unlabeled/unlabeled-1.1.2/core/units/selectors/selectors_tag_processor.php (.../selectors_tag_processor.php) (revision 1422) +++ branches/unlabeled/unlabeled-1.1.2/core/units/selectors/selectors_tag_processor.php (.../selectors_tag_processor.php) (revision 1484) @@ -7,17 +7,9 @@ { $object =& $this->Application->recallObject( $this->getPrefixSpecial(), $this->Prefix, $params ); $style_data = $object->GetDBField( $params['field'] ); - - $ret = ''; - if($style_data) - { - $separator = getArrayValue($params,'inline') ? ' ' : '
'; - foreach($style_data as $property_name => $property_value) - { - $ret .= $property_name.': '.$property_value.';'.$separator; - } - } + $ret = $object->CompileStyleBody( getArrayValue($params,'inline') ? STYLE_INLINE : STYLE_PREVIEW ); + return $ret; }