mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 12:40:01 +01:00
MDL-27627 Headers in moodleform_mod should have IDs
This commit is contained in:
parent
16b5541dd2
commit
3fbe0e8a0f
@ -428,7 +428,7 @@ abstract class moodleform_mod extends moodleform {
|
||||
|
||||
if (!empty($CFG->enableavailability)) {
|
||||
// Conditional availability
|
||||
$mform->addElement('header', '', get_string('availabilityconditions', 'condition'));
|
||||
$mform->addElement('header', 'availabilityconditionsheader', get_string('availabilityconditions', 'condition'));
|
||||
$mform->addElement('date_selector', 'availablefrom', get_string('availablefrom', 'condition'), array('optional'=>true));
|
||||
$mform->addHelpButton('availablefrom', 'availablefrom', 'condition');
|
||||
$mform->addElement('date_selector', 'availableuntil', get_string('availableuntil', 'condition'), array('optional'=>true));
|
||||
@ -522,7 +522,7 @@ abstract class moodleform_mod extends moodleform {
|
||||
$completion = new completion_info($COURSE);
|
||||
}
|
||||
if ($completion->is_enabled()) {
|
||||
$mform->addElement('header', '', get_string('activitycompletion', 'completion'));
|
||||
$mform->addElement('header', 'activitycompletionheader', get_string('activitycompletion', 'completion'));
|
||||
|
||||
// Unlock button for if people have completed it (will
|
||||
// be removed in definition_after_data if they haven't)
|
||||
|
Loading…
x
Reference in New Issue
Block a user