mirror of
https://github.com/moodle/moodle.git
synced 2025-04-04 16:04:00 +02:00
Merge branch 'MDL-61970-master' of git://github.com/FMCorz/moodle
This commit is contained in:
commit
7f2e2bfda9
@ -281,8 +281,8 @@ class provider implements
|
||||
* @return int
|
||||
*/
|
||||
protected static function get_survey_id_from_context(context_module $context) {
|
||||
$cm = get_coursemodule_from_id('survey', $context->instanceid, 0, false, MUST_EXIST);
|
||||
return (int) $cm->instance;
|
||||
$cm = get_coursemodule_from_id('survey', $context->instanceid);
|
||||
return $cm ? (int) $cm->instance : 0;
|
||||
}
|
||||
/**
|
||||
* Loop and export from a recordset.
|
||||
|
Loading…
x
Reference in New Issue
Block a user