Index: branches/RC/core/units/general/helpers/rating_helper.php =================================================================== diff -u -r10870 -r11090 --- branches/RC/core/units/general/helpers/rating_helper.php (.../rating_helper.php) (revision 10870) +++ branches/RC/core/units/general/helpers/rating_helper.php (.../rating_helper.php) (revision 11090) @@ -7,7 +7,7 @@ * * @var int */ - var $ratingUnitWidth = 30; + var $ratingUnitWidth = 25; /** * Maximal star count @@ -55,13 +55,14 @@ $rating1 = $total_votes ? @number_format($total_rating / $total_votes, 1) : 0; $rating2 = $total_votes ? @number_format($total_rating / $total_votes, 2) : 0; - $rater = '
'; + // this part is disabled for now, will be addressed once properly review +// $rater .= '' . + $this->_replaceInPhrase('vote_title', Array(''.$rating1.'', $this->ratingMaximal)) . ' ('. $this->_replaceInPhrase('vote_count', Array($total_votes)) . ')
'; + + $rater .= ' '.$additional_msg.''; + if ($show_div) { // adds div around rating stars (when drawing rating first time) - $rater = ' '; + $rater = ' '; } return $rater;