After upgrading stars stopped working. This is what I am using.
PHP Code:
<?php
// very basic stars hack by freddie
$starposts = 5; // Number of posts to give a new star
$maxstars = 140; // Maximum stars to give per line
unset($stars);
$starsgif = '<img src="images/star.gif" border=0>';
$numstars = intval($post[posts] / $starposts);
$starcount = 0;
for ($x=0; $numstars>0 && $x<$numstars ;$x++) {
$stars .= $starsgif;
$starcount++;
if ($starcount == $maxstars) {
$stars .= '<br>';
$starcount = 0;
}
}
if (!$stars)
$stars = '<br>';
else
$stars .= '<br><br>';
?>