8
Jen, and anyone else who may be having this problem....
Problem: Debaser 0.92b module will not open catagories and rating is not available.
Reason: genre.php has an error in the code at line 55.
solution: Change line 55 from:
WHERE t.genreid=mysql_real_escape_string($gid)
to:
WHERE t.genreid=".mysql_real_escape_string($gid)."
This fixed the problem. Simple quotation marks made all the difference.
Sandy