Skip to content

Commit

Permalink
ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartlamour committed Jul 4, 2024
1 parent 4b5c753 commit e9b847c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,13 @@ function local_assess_type_coursemodule_standard_elements($formwrapper, $mform)
if ($sitsmapped) {
$attributes['disabled'] = 'disabled';
}
$select = $mform->createElement('select', 'assessment_type', get_string('fieldlabel', 'local_assess_type'), $options, $attributes);
$select = $mform->createElement(
'select',
'assessment_type',
get_string('fieldlabel', 'local_assess_type'),
$options,
$attributes
);

// Set to summative when sits mapped.
if ($sitsmapped) {
Expand Down

0 comments on commit e9b847c

Please sign in to comment.