Merge branch 'MDL-28686' of git://github.com/bostelm/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2011-09-27 00:45:45 +02:00
commit bde5c82a20

View File

@ -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') {