Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
MDL-49880 mod_lesson: Fixed notice while importing questions.
[moodle.git]
/
question
/
format
/
xml
/
format.php
diff --git
a/question/format/xml/format.php
b/question/format/xml/format.php
index
d854ce4
..
4ddff96
100644
(file)
--- a/
question/format/xml/format.php
+++ b/
question/format/xml/format.php
@@
-454,7
+454,11
@@
class qformat_xml extends qformat_default {
// Header parts particular to multianswer.
$qo->qtype = 'multianswer';
// Header parts particular to multianswer.
$qo->qtype = 'multianswer';
- $qo->course = $this->course;
+
+ // Only set the course if the data is available.
+ if (isset($this->course)) {
+ $qo->course = $this->course;
+ }
$qo->name = $this->clean_question_name($this->import_text($question['#']['name'][0]['#']['text']));
$qo->questiontextformat = $questiontext['format'];
$qo->name = $this->clean_question_name($this->import_text($question['#']['name'][0]['#']['text']));
$qo->questiontextformat = $questiontext['format'];