Ranks out of 10? Please correct my code

Various mods to change or add features.

Ranks out of 10? Please correct my code

Postby JohnMkd » 2007-10-21 09:45 pm

Guys, is there any way to change the ranking from being out of 5 to being out of 10?

I tried to change /skins/classic/rate_form.htm from
Code: Select all
<label><input type="radio" name="rating" value="5" /><img src="{$skins_url}/{$skin_name}/rate_5.png" alt="5/5" /><br /></label>

<label><input type="radio" name="rating" value="4" /><img src="{$skins_url}/{$skin_name}/rate_4.png" alt="4/5" /><br /></label>

<label><input type="radio" name="rating" value="3" checked="checked" /><img src="{$skins_url}/{$skin_name}/rate_3.png" alt="3/5" /><br /></label>

<label><input type="radio" name="rating" value="2" /><img src="{$skins_url}/{$skin_name}/rate_2.png" alt="2/5" /><br /></label>

<label><input type="radio" name="rating" value="1" /><img src="{$skins_url}/{$skin_name}/rate_1.png" alt="1/5" /><br /><br /></label>

to something like
Code: Select all
<label><input type="radio" name="rating" value="10" />10<br /></label>
<label><input type="radio" name="rating" value="9" />9<br /></label>
<label><input type="radio" name="rating" value="8" />8<br /></label>
<label><input type="radio" name="rating" value="7" />7<br /></label>
<label><input type="radio" name="rating" value="6" checked="checked"/>6<br /></label>
<label><input type="radio" name="rating" value="5" />5<br /></label>
<label><input type="radio" name="rating" value="4" />4<br /></label>
<label><input type="radio" name="rating" value="3" />3<br /></label>
<label><input type="radio" name="rating" value="2" />2<br /></label>
<label><input type="radio" name="rating" value="1" />1<br /></label>
But I find that the stats still won't go above 5 on the results page.

What am I missing or doing wrong? Maybe my code is wrong or maybe there is another file which limits the rating results (for which I am using the {$average_rating} variable) to 5.

My list is here: http://www.activismtop1000.com

Thank you for any help.
JohnMkd
Advanced Member
 
Posts: 47
Joined: 2007-10-02 02:28 am

Postby Jeremy » 2007-10-22 10:56 am

in rate.php find this:
Code: Select all
    if ($rating > 5) {
      $rating = 5;
    }

change the 5's to whatever you want your new max to be. this is to prevent people from cheating and sending a score of 99999999 or something.
Jeremy
Supreme Diety
 
Posts: 8922
Joined: 2003-05-05 04:41 pm
Location: NJ, USA

Postby JohnMkd » 2007-10-22 11:14 am

Awesome. Thanks Jeremy. :)
JohnMkd
Advanced Member
 
Posts: 47
Joined: 2007-10-02 02:28 am


Return to Mods

Who is online

Users browsing this forum: No registered users and 0 guests

cron