MDL-34293 Themes: Added thead to flexible table

This commit is contained in:
David Scotson 2012-08-15 10:23:41 +01:00 committed by Rajesh Taneja
parent c92d6f417c
commit 289320528c

View File

@ -1051,6 +1051,7 @@ class flexible_table {
function print_headers() {
global $CFG, $OUTPUT;
echo html_writer::start_tag('thead');
echo html_writer::start_tag('tr');
foreach ($this->columns as $column => $index) {
@ -1121,6 +1122,7 @@ class flexible_table {
}
echo html_writer::end_tag('tr');
echo html_writer::end_tag('thead');
}
/**