mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +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
|
@ -348,10 +348,10 @@ class quiz_report extends quiz_default_report {
|
|||
// Display the form with one part for each selected attempt
|
||||
|
||||
echo '<form method="post" action="report.php">'.
|
||||
'<input type="hidden" name="mode" value="grading">'.
|
||||
'<input type="hidden" name="mode" value="grading" />'.
|
||||
'<input type="hidden" name="q" value="'.$quiz->id.'">'.
|
||||
'<input type="hidden" name="sesskey" value="'.sesskey().'">'.
|
||||
'<input type="hidden" name="action" value="viewquestion">'.
|
||||
'<input type="hidden" name="sesskey" value="'.sesskey().'" />'.
|
||||
'<input type="hidden" name="action" value="viewquestion" />'.
|
||||
'<input type="hidden" name="questionid" value="'.$question->id.'">';
|
||||
|
||||
foreach ($attempts as $attempt) {
|
||||
|
@ -384,7 +384,7 @@ class quiz_report extends quiz_default_report {
|
|||
|
||||
echo '</div>';
|
||||
}
|
||||
echo '<div align="center"><input type="submit" value="'.get_string('savechanges').'"></div>'.
|
||||
echo '<div align="center"><input type="submit" value="'.get_string('savechanges').'" /></div>'.
|
||||
'</form>';
|
||||
|
||||
if ($usehtmleditor) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue