Thanks JWS,
works very well on 2.0.3.
It's around 451 in 2.0.3 and here are the slightly different changes:
Find:
PHP Code:
if ($foruminfo[allowratings]) {
if ($thread[votenum] >= $showvotes) {
$rating = intval(round($thread[voteavg]));
$thread[rating] = $rating . 'stars.gif';
} else {
$thread[rating] = 'clear.gif';
}
Change to:
PHP Code:
if ($foruminfo[allowratings]) {
if ($thread[votenum] >= $showvotes) {
$rating = round($thread[voteavg],1);
$bar_width = $rating * 10;
$thread[rating] = 'bar.gif';
} else {
$thread[rating] = 'clear.gif';
}
cu,
-Tom