mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 04:22:07 +02:00
MDL-79057 gradereport_singleview: Use proper hidden attribute value
HTML attribute hidden="1" is invalid. It either needs to be set to an empty string or use the keyword "hidden" for its value.
This commit is contained in:
parent
bf9a2f43ad
commit
51655f3485
@ -225,7 +225,7 @@ abstract class tablelike extends screen implements be_readonly {
|
||||
return html_writer::tag(
|
||||
'div',
|
||||
(new bulk_insert($this->item))->html(),
|
||||
['class' => 'singleview_bulk', 'hidden' => true]
|
||||
['class' => 'singleview_bulk', 'hidden' => 'hidden']
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user