while there are probably many ways to do it, I can think of only one way.
make a copy of header.html and add the following line to the meta section:
Code:
<meta http-equiv="Refresh" content="5; URL=browse.php">
or maybe
change the time and url to whatever. save it as header_ref.html
then in rating.php make the following change:
Code:
// success
if($rating_result==0) {
$title = $links_obj->GetLinkTitle($id);
DisplayTemplate($theme_path."header_ref.html","\$title,\$cat");
DisplayTemplate($theme_path."rating_ok.html","\$novars");
DisplayTemplate($theme_path."footer.html","\$cat,\$ma");
}
I did not test this. but it seems like it would work. But then my brain does not think like a computer so....