}
}
- $count = count($ratings);
- $scalecount = count($scale)-1; //this should give us the last element of the scale aka the max grade with $scale[$scalecount]
-
- if ($count > $scale[$scalecount]) { //if the count exceeds the forum scale (i.e. max grade then set the score to the max grade
- $count = $scale[$scalecount];
- }
- return $scale[$count];
+ return count($ratings);
}
/**