-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
3.4.3
-
None
-
2018021000
-
MOODLE_34_STABLE
The form element is defined like this in overview.php:
echo html_writer::start_tag('form', $formattributes);
It's never closed.
I solved this by adding a form closing tag like this on line 305 in overview.php:
echo html_writer::end_tag('form');
I placed the above echo just below the $table->print_html() method call to fix the bug. Please fix this bug.