Ignore:
Timestamp:
01/27/07 02:11:38 (5 years ago)
Author:
infoarena
Message:

Various fixed collected on the production server.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/infoarena2/common/rating.php

    r603 r610  
    232232} 
    233233 
     234// Represent rating in a human-friendly scale from 0 to 1000 
     235// NOTE: This is used only when displaying ratings to users. 
     236// NOTE: Currently used by www/format/* and scripts/send-newsletter. 
     237function rating_scale($absolute_rating) { 
     238    return round($absolute_rating / 3.0); 
     239} 
     240 
    234241?> 
Note: See TracChangeset for help on using the changeset viewer.