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:
Petr Skoda 2009-12-17 13:47:35 +00:00
parent 56cbc53b76
commit a24318005c

View File

@ -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';