Prevent exception when adding 'teachername' element to site template (#261)

This commit is contained in:
Mark Nelson 2018-12-27 09:05:45 +08:00
parent c85d7e0edc
commit 61e18a647b

View file

@ -102,6 +102,11 @@ class element extends \mod_customcert\element {
protected function get_list_of_teachers() {
global $PAGE;
// Return early if we are in a site template.
if ($PAGE->context->id == \context_system::instance()->id) {
return [];
}
// The list of teachers to return.
$teachers = array();