Added missing percentages to the grade selector, closing bug 4250

This commit is contained in:
gustav_delius 2006-02-12 22:38:13 +00:00
parent aa960f6b04
commit 41323dff31

View file

@ -282,7 +282,7 @@
} }
} }
$grades = array(1,0.9,0.8,0.75,0.70,0.66666,0.60,0.50,0.40,0.33333,0.30,0.25,0.20,0.16666,0.142857,0.10,0.05,0); $grades = array(1,0.9,0.8,0.75,0.70,0.66666,0.60,0.50,0.40,0.33333,0.30,0.25,0.20,0.16666,0.142857,0.125,0.11111,0.10,0.05,0);
foreach ($grades as $grade) { foreach ($grades as $grade) {
$percentage = 100 * $grade; $percentage = 100 * $grade;
$neggrade = -$grade; $neggrade = -$grade;