There is a problem with the spacing that you showed in the code box above. I checked it with the zip file and it does not match.. so check again-- it's just a spacing issue that is preventing you from finding this string:
PHP Code:
if ($reputation_value > 500)
{ // bright green bars take 200 pts not the normal 100
$reputation_value = ($reputation_value - ($reputation_value - 500)) + (($reputation_value - 500) / 2);
}
$reputationbars = intval($reputation_value / 100); // award 1 reputation bar for every 100 points
Thanks, let me know if you get it.