Moodle import check if value is not empty #2734

pull/2818/head
Angel Fernando Quiroz Campos 6 years ago
parent fc722dc110
commit 5aeb840fbc
  1. 4
      main/inc/lib/MoodleImport.php

@ -229,9 +229,9 @@ class MoodleImport
} else {
$exercise->setRandom(0);
}
$exercise->updateRandomAnswers($moduleValues['shuffleanswers']);
$exercise->updateRandomAnswers(!empty($moduleValues['shuffleanswers']));
// @todo divide to minutes
$exercise->updateExpiredTime($moduleValues['timelimit']);
$exercise->updateExpiredTime((int) $moduleValues['timelimit']);
if ($moduleValues['questionsperpage'] == 1) {
$exercise->updateType(2);

Loading…
Cancel
Save