mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-32220 question import: readquestions arguments change
Removed the context parameter for blackboard and blackboard_six formats.
This parameter was removed in 4d188926
This commit is contained in:
parent
5661f7b454
commit
86cfd9966a
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ class qformat_blackboard extends qformat_default {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function readquestions ($lines, $context) {
|
function readquestions($lines) {
|
||||||
/// Parses an array of lines into an array of questions,
|
/// Parses an array of lines into an array of questions,
|
||||||
/// where each item is a question object as defined by
|
/// where each item is a question object as defined by
|
||||||
/// readquestion().
|
/// readquestion().
|
||||||
|
|
|
@ -243,7 +243,7 @@ class qformat_blackboard_six extends qformat_default {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
protected function readquestions ($lines, $context) {
|
protected function readquestions($lines) {
|
||||||
/// Parses an array of lines into an array of questions,
|
/// Parses an array of lines into an array of questions,
|
||||||
/// where each item is a question object as defined by
|
/// where each item is a question object as defined by
|
||||||
/// readquestion().
|
/// readquestion().
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue