skala
Hubert Borderiou 14 years ago
commit e5d0a697ef
  1. 6
      main/exercice/exercise.class.php
  2. 6
      main/exercice/testcategory.class.php

@ -293,7 +293,7 @@ class Exercise {
/**
* return 0 if no random by cat
* return 1 if rendom by cat, categories shuffled
* return 1 if random by cat, categories shuffled
* return 2 if random by cat, categories sorted by alphabetic order
* @author - hubert borderiou
* @return - integer - quiz random by category
@ -801,7 +801,9 @@ class Exercise {
if ($pos === false) {
return false;
} else {
if ($this->isRandom()) {
// dont reduce the number of random question if we use random by category option, or if
// random all questions
if ($this->isRandom() && $this->isRandomByCat() == 0) {
if (count($this->questionList) >= $this->random && $this->random > 0) {
$this->random -= 1;
$this->save();

@ -221,7 +221,8 @@ class Testcategory {
$quiz = new Exercise();
$quiz->read($in_testid);
$tabQuestionList = $quiz->selectQuestionList();
for ($i=0; $i < count($tabQuestionList); $i++) {
// the array given by selectQuestionList start at indice 1 and not at indice 0 !!! ???
for ($i=1; $i <= count($tabQuestionList); $i++) {
if (!in_array(Testcategory::getCategoryForQuestion($tabQuestionList[$i]), $tabcat)) {
$tabcat[] = Testcategory::getCategoryForQuestion($tabQuestionList[$i]);
}
@ -268,7 +269,8 @@ class Testcategory {
$quiz = new Exercise();
$quiz->read($in_testid);
$tabQuestionList = $quiz->selectQuestionList();
for ($i=0; $i < count($tabQuestionList); $i++) {
// the array given by selectQuestionList start at indice 1 and not at indice 0 !!! ? ? ?
for ($i=1; $i <= count($tabQuestionList); $i++) {
if (Testcategory::getCategoryForQuestion($tabQuestionList[$i]) == $in_categoryid) {
$nbCatResult++;
}

Loading…
Cancel
Save