MDL-31814 question bank: fix possible error with sort columns.
This commit is contained in:
@@ -1141,6 +1141,8 @@ class quiz_question_bank_view extends question_bank_view {
|
||||
}
|
||||
|
||||
protected function default_sort() {
|
||||
$this->requiredcolumns['qtype'] = $this->knowncolumntypes['qtype'];
|
||||
$this->requiredcolumns['questionnametext'] = $this->knowncolumntypes['questionnametext'];
|
||||
return array('qtype' => 1, 'questionnametext' => 1);
|
||||
}
|
||||
|
||||
|
||||
@@ -1033,6 +1033,8 @@ class question_bank_view {
|
||||
}
|
||||
|
||||
protected function default_sort() {
|
||||
$this->requiredcolumns['qtype'] = $this->knowncolumntypes['qtype'];
|
||||
$this->requiredcolumns['questionname'] = $this->knowncolumntypes['questionname'];
|
||||
return array('qtype' => 1, 'questionname' => 1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user