Skip to content

Commit

Permalink
MDL-12581 fixed multiple xhtml strict; merged from MOODLE_19_STABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Dec 15, 2007
1 parent b384765 commit 1d21b23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions course/importstudents.html
Expand Up @@ -8,7 +8,7 @@
<td valign="top">
<label for="removeselect"><?php echo count($alreadycourses) . " ". $stralreadycourses ?></label>
<br />
<select name="removeselect[]" size="20" id="removeselect" multiple
<select name="removeselect[]" size="20" id="removeselect" multiple="multiple"
onFocus="getElementById('studentform').add.disabled=true;
getElementById('studentform').remove.disabled=false;
getElementById('studentform').addselect.selectedIndex=-1;">
Expand All @@ -29,7 +29,7 @@
<td valign="top">
<label for="addselect"><?php echo $numcourses . " " . $strpotentialcourses ?></label>
<br />
<select name="addselect[]" size="20" id="addselect" multiple
<select name="addselect[]" size="20" id="addselect" multiple="multiple"
onFocus="getElementById('studentform').add.disabled=false;
getElementById('studentform').remove.disabled=true;
getElementById('studentform').removeselect.selectedIndex=-1;">
Expand Down

0 comments on commit 1d21b23

Please sign in to comment.