Fix read question of calculated answer type - refs #8237

1.10.x
Angel Fernando Quiroz Campos 9 years ago
parent aafde67b9c
commit 6b3e77efab
  1. 2
      main/exercice/answer.class.php

@ -73,7 +73,7 @@ class Answer
$exerciseId = isset($_REQUEST['exerciseId']) ? $_REQUEST['exerciseId'] : null;
$objExercise->read($exerciseId);
if ($objExercise->random_answers == '1') {
if ($objExercise->random_answers == '1' && $this->getQuestionType() != CALCULATED_ANSWER) {
$this->readOrderedBy('rand()', '');// randomize answers
} else {
$this->read(); // natural order

Loading…
Cancel
Save