mirror of
https://github.com/moodle/moodle.git
synced 2025-04-25 10:26:17 +02:00
MDL-34293 Themes: Added tbody to flexible table
This commit is contained in:
parent
289320528c
commit
4625404451
@ -941,6 +941,7 @@ class flexible_table {
|
||||
} else {
|
||||
$this->start_html();
|
||||
$this->print_headers();
|
||||
echo html_writer::start_tag('tbody');
|
||||
}
|
||||
}
|
||||
|
||||
@ -1004,6 +1005,7 @@ class flexible_table {
|
||||
$this->print_nothing_to_display();
|
||||
|
||||
} else {
|
||||
echo html_writer::end_tag('tbody');
|
||||
echo html_writer::end_tag('table');
|
||||
echo html_writer::end_tag('div');
|
||||
$this->wrap_html_finish();
|
||||
@ -1719,6 +1721,7 @@ EOF;
|
||||
|
||||
function output_headers($headers) {
|
||||
$this->table->print_headers();
|
||||
echo html_writer::start_tag('tbody');
|
||||
}
|
||||
|
||||
function add_data($row) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user