Merge branch 'MDL-28686-21' of git://github.com/bostelm/moodle into MOODLE_21_STABLE
This commit is contained in:
@@ -342,6 +342,15 @@ class question_engine_attempt_upgrader {
|
||||
}
|
||||
|
||||
protected function get_converter_class_name($question, $quiz, $qsessionid) {
|
||||
global $DB;
|
||||
if ($question->qtype == 'deleted') {
|
||||
$where = '(question = :questionid OR '.$DB->sql_like('answer', ':randomid').') AND event = 7';
|
||||
$params = array('questionid'=>$question->id, 'randomid'=>"random{$question->id}-%");
|
||||
if ($DB->record_exists_select('question_states', $where, $params)) {
|
||||
$this->logger->log_assumption("Assuming that deleted question {$question->id} was manually graded.");
|
||||
return 'qbehaviour_manualgraded_converter';
|
||||
}
|
||||
}
|
||||
if ($question->qtype == 'essay') {
|
||||
return 'qbehaviour_manualgraded_converter';
|
||||
} else if ($question->qtype == 'description') {
|
||||
|
||||
Reference in New Issue
Block a user