Fixed logic so site templates work as expected (#160)

This commit is contained in:
Mark Nelson 2018-12-17 16:41:21 +08:00
parent 31e5feeb1b
commit b3bd669eac

View file

@ -73,7 +73,7 @@ class element extends \mod_customcert\element {
// Get the possible date options.
$dateoptions = array();
$dateoptions[CUSTOMCERT_DATE_ISSUE] = get_string('issueddate', 'customcertelement_date');
$completionenabled = $CFG->enablecompletion && $COURSE->enablecompletion;
$completionenabled = $CFG->enablecompletion && ($COURSE->id == SITEID || $COURSE->enablecompletion);
if ($completionenabled) {
$dateoptions[CUSTOMCERT_DATE_COMPLETION] = get_string('completiondate', 'customcertelement_date');
}