-
Bug
-
Resolution: Fixed
-
Minor
-
3.1.5, 3.2.2, 3.3, 3.4.3, 3.5
-
MOODLE_31_STABLE, MOODLE_32_STABLE, MOODLE_33_STABLE, MOODLE_34_STABLE, MOODLE_35_STABLE
-
MOODLE_34_STABLE, MOODLE_35_STABLE
-
MDL-58702-master -
Easy
-
Steps to reproduce:
- Restore the attached backup file into 32 with users included
- Get to the point in restore process which asks about role mappings
Expected results:
The form should have a label which indicates what is being mapped
Actual results:
The form label is empty
Additional technical details:
The html generated has empty label tag:
<div class="detail-pair">
|
<label class="detail-pair-label" for="detail-pair-value-1"></label>
|
<div class="detail-pair-value">
|
<select class="select custom-select menumapping1" id="menumapping1" name="mapping1">
|
<option selected="selected" value="1">
|
Manager
|
</option>
|
<option value="3">
|
Teacher
|
</option>
|
<option value="4">
|
Non-editing teacher
|
</option>
|
<option value="5">
|
Student
|
</option>
|
<option value="0">
|
None
|
</option>
|
</select>
|
</div>
|
</div>
|