From: kaipe Date: Fri, 1 Aug 2003 13:24:05 +0000 (+0000) Subject: Added the choice of 16.666% for multichoice fraction X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=2e3e1ac76b543f42c82c9c922e61705282361aa8;p=moodle.git Added the choice of 16.666% for multichoice fraction --- diff --git a/mod/quiz/question.php b/mod/quiz/question.php index 9aef192cfe..59f3ffb7f3 100644 --- a/mod/quiz/question.php +++ b/mod/quiz/question.php @@ -150,7 +150,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.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.10,0.05,0); foreach ($grades as $grade) { $percentage = 100 * $grade; $neggrade = -$grade;