mirror of
https://github.com/moodle/moodle.git
synced 2025-08-11 03:46:42 +02:00
MDL-79863 qtype_ordering: qtype/ordering fix restoring or options in ordering questions
This commit is contained in:
parent
6571680f9a
commit
cc1af29abc
2 changed files with 3 additions and 3 deletions
|
@ -216,7 +216,7 @@ class qtype_ordering_question extends question_graded_automatically {
|
||||||
'partiallycorrectfeedback' => '',
|
'partiallycorrectfeedback' => '',
|
||||||
'partiallycorrectfeedbackformat' => FORMAT_MOODLE // =0
|
'partiallycorrectfeedbackformat' => FORMAT_MOODLE // =0
|
||||||
);
|
);
|
||||||
$this->options->id = $DB->insert_record('qtype_ordering_options', $options);
|
$this->options->id = $DB->insert_record('qtype_ordering_options', $this->options);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $this->options;
|
return $this->options;
|
||||||
|
|
|
@ -30,6 +30,6 @@ defined('MOODLE_INTERNAL') || die();
|
||||||
$plugin->cron = 0;
|
$plugin->cron = 0;
|
||||||
$plugin->component = 'qtype_ordering';
|
$plugin->component = 'qtype_ordering';
|
||||||
$plugin->maturity = MATURITY_STABLE; // ALPHA=50, BETA=100, RC=150, STABLE=200
|
$plugin->maturity = MATURITY_STABLE; // ALPHA=50, BETA=100, RC=150, STABLE=200
|
||||||
$plugin->release = '2015-02-15 (20)';
|
$plugin->release = '2015-02-21 (21)';
|
||||||
$plugin->version = 2015021520;
|
$plugin->version = 2015022121;
|
||||||
$plugin->requires = 2010112400; // Moodle 2.0
|
$plugin->requires = 2010112400; // Moodle 2.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue