MDL-7861 I have noticed that the last change in weblib.php http://moodle.cvs.sourceforge.net/moodle/moodle/lib/weblib.php?r1=1.722&r2=1.723 broke validation because name and id attributes are not the same, committing fix, please review ;-)

This commit is contained in:
skodak
2007-01-02 10:00:38 +00:00
parent fc82080170
commit 9119f247cf
+2 -2
View File
@@ -956,10 +956,10 @@ function popup_form($common, $options, $formname, $selected='', $nothing='choose
' method="get"'.
' target="'.$CFG->framename.'"'.
' name="'.$formname.'"'.
' id="id_'.$formname.'"'.
' id="'.$formname.'"'.
' class="popupform">';
$output = '<select name="jump" onchange="'.$targetwindow.'.location=document.getElementById(\'id_'.$formname.'\').jump.options[document.getElementById(\'id_'.$formname.'\').jump.selectedIndex].value;">'."\n";
$output = '<select name="jump" onchange="'.$targetwindow.'.location=document.getElementById(\''.$formname.'\').jump.options[document.getElementById(\''.$formname.'\').jump.selectedIndex].value;">'."\n";
if ($nothing != '') {
$output .= " <option value=\"javascript:void(0)\">$nothing</option>\n";