mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 17:02:03 +02:00
MDL-20935 removing entity decoding because seemingly nobody knows why it is there and it might create XSS security problems; this might create regression somewhere, but we shoudl imo find better solution instead
This commit is contained in:
parent
56cbc53b76
commit
a24318005c
@ -1879,7 +1879,7 @@ class core_renderer extends renderer_base {
|
||||
'class' => $cell->get_classes_string(),
|
||||
'abbr' => $cell->abbr,
|
||||
'scope' => $cell->scope,
|
||||
'title' => html_entity_decode($cell->title));
|
||||
'title' => $cell->title);
|
||||
$tagtype = 'td';
|
||||
if ($cell->header === true) {
|
||||
$tagtype = 'th';
|
||||
|
Loading…
x
Reference in New Issue
Block a user