mirror of
https://github.com/moodle/moodle.git
synced 2025-08-10 03:16:42 +02:00
MDL-7861 xhtml transient fixes for not closed input fields - I hope all of them except imported libs are now fixed
This commit is contained in:
parent
c0fe837eeb
commit
60af27037b
44 changed files with 197 additions and 197 deletions
|
@ -71,7 +71,7 @@ $text_source_options = array(
|
|||
"return hotpot_lockoptions('form', 'namesource', namelockitems, nameoffvalues)"
|
||||
);
|
||||
} else {
|
||||
print '<input type="hidden" name="namesource" value="'.HOTPOT_TEXTSOURCE_SPECIFIC.'">';
|
||||
print '<input type="hidden" name="namesource" value="'.HOTPOT_TEXTSOURCE_SPECIFIC.'" />';
|
||||
}
|
||||
print '<input type="text" name="name" size=40 value="'.$form->name.'">';
|
||||
?></td>
|
||||
|
@ -102,7 +102,7 @@ $text_source_options = array(
|
|||
choose_from_menu($text_source_options, "summarysource", "$form->summarysource", "");
|
||||
print '<br />';
|
||||
} else {
|
||||
print '<input type="hidden" name="summarysource" value="'.HOTPOT_TEXTSOURCE_SPECIFIC.'">';
|
||||
print '<input type="hidden" name="summarysource" value="'.HOTPOT_TEXTSOURCE_SPECIFIC.'" />';
|
||||
}
|
||||
if (function_exists("print_textarea") && isset($usehtmleditor)) {
|
||||
print_textarea($usehtmleditor, 10, 65, 680, 400, "summary", $form->summary);
|
||||
|
@ -342,7 +342,7 @@ $text_source_options = array(
|
|||
);
|
||||
choose_from_menu($options, "displaynext", "$form->displaynext", "");
|
||||
} else {
|
||||
print '<input type="hidden" name="displaynext" value="'.HOTPOT_NO.'">'."\n";
|
||||
print '<input type="hidden" name="displaynext" value="'.HOTPOT_NO.'" />'."\n";
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue