in your forumdisplay.php
find this:
PHP Code:
if ($foruminfo[allowratings]) {
if ($thread[votenum] >= $showvotes) {
$rating = intval(round($thread[voteavg]));
$thread[rating] = $rating . 'stars.gif';
} else {
$thread[rating] = 'clear.gif';
}
} else {
replace it with:
PHP Code:
if ($foruminfo[allowratings]) {
if ($thread[votenum] >= $showvotes) {
$rating = intval(round($thread[voteavg]));
$thread[rating] = $rating . 'stars.gif';
} elseif($thread[votenum]==1) {
$thread[rating] = 'stars.gif';
} else {
$thread[rating] = 'clear.gif';
}
} else {