MDL-34293 Themes: Added tbody to flexible table

This commit is contained in:
Rajesh Taneja 2012-08-21 13:50:38 +08:00
parent 289320528c
commit 4625404451

View File

@ -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) {