mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 04:33:13 +01:00
MDL-34293 Themes: Added thead to flexible table
This commit is contained in:
parent
c92d6f417c
commit
289320528c
@ -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');
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user