mirror of
https://github.com/moodle/moodle.git
synced 2025-04-04 16:04:00 +02:00
Merge branch 'MDL-61986' of git://github.com/stronk7/moodle
This commit is contained in:
commit
bb874345cf
@ -546,7 +546,8 @@ class provider implements
|
||||
} else if ($data->page_qtype == LESSON_PAGE_MULTICHOICE && $data->page_qoption) {
|
||||
// Multiple choice quesitons with multiple answers encode the answers.
|
||||
list($insql, $inparams) = $DB->get_in_or_equal(explode(',', $answer), SQL_PARAMS_NAMED);
|
||||
$records = $DB->get_records_select('lesson_answers', "id $insql", $inparams, 'id, answer, answerformat');
|
||||
$orderby = 'id, ' . $DB->sql_order_by_text('answer') . ', answerformat';
|
||||
$records = $DB->get_records_select('lesson_answers', "id $insql", $inparams, $orderby);
|
||||
$answer = array_values(array_map(function($record) use ($options) {
|
||||
return format_text($record->answer, $record->answerformat, $options);
|
||||
}, empty($records) ? [] : $records));
|
||||
|
Loading…
x
Reference in New Issue
Block a user