From 01637ef5307f22d1698dd10b0d26061ea0e45f1a Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Thu, 21 Oct 2010 18:45:12 +0200 Subject: [PATCH] Fixing negative puntation see #2193 --- main/exercice/exercise.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/exercice/exercise.class.php b/main/exercice/exercise.class.php index 749af1da53..faa1e6ac72 100755 --- a/main/exercice/exercise.class.php +++ b/main/exercice/exercise.class.php @@ -1964,8 +1964,8 @@ class Exercise { } else { $studentChoice = $choice; if ($studentChoice) { - //@todo verify this--> set to -1 because the question has'nt been corrected - $questionScore = -1; + //Fixing negative puntation see #2193 + $questionScore = 0; $totalScore += 0; } }