browse/ratings.php: fix Uncaught TypeError in PHP 8 with visiting the Browse Ratings section with no ratings listed
browse/ratings.php: fix Uncaught TypeError in PHP 8 with visiting the Browse Ratings section with no ratings listed

--- a/browse/ratings.php
+++ b/browse/ratings.php
@@ -34,7 +34,7 @@
 }
 else {
 	$output .= "<div id='pagetitle'>"._RATINGS."</div>";
-	$total = count($ratingslist);
+	$total = is_countable($ratingslist);
 	$count = 0;
 	$column = 1;
 	$list = floor($total / $displaycolumns);