The next version is coming out very soon, just adding side menu to it.
--------------------------------------------------------------
Quote:
Originally Posted by john102774
One more questions. The score rounds it self to a nearest whole number. How can I prevent this from happening if a user has a time score of 10:02.834?
|
Open
tournament.php find:
Code:
$score = $vbulletin->input->clean_gpc('p', 'score', TYPE_UINT);
Replace with:
Code:
$score = $vbulletin->input->clean_gpc('p', 'score', TYPE_INT);
If that still doesnt work:
Open
tournament.php find:
Code:
$score = $vbulletin->input->clean_gpc('p', 'score', TYPE_INT);
Replace with:
Code:
$score = $vbulletin->input->clean_gpc('p', 'score', TYPE_STR);