Describe the bug
if a section header has quote marks, while opening the modal the title is cut off.
To Reproduce
- create a section with " in the title.
- open the modal
Expected behaviour
I would expect to see the same title in the grid view and when the modal popups.
Screenshots
Versions (please complete the following information):
- Moodle: 4.5.8+
- Format: 405.1.5 (2024101508)
Additional context
obviously it's an HTML escaping issue.
i believe that changing in grid.mustach
this:
data-sectiontitle="{{#header}}{{{name}}}{{/header}}"
to this:
data-sectiontitle="{{#header}}{{name}}{{/header}}"
will fix the issue.
Describe the bug
if a section header has quote marks, while opening the modal the title is cut off.
To Reproduce
Expected behaviour
I would expect to see the same title in the grid view and when the modal popups.
Screenshots
Versions (please complete the following information):
Additional context
obviously it's an HTML escaping issue.
i believe that changing in grid.mustach
this:
data-sectiontitle="{{#header}}{{{name}}}{{/header}}"
to this:
data-sectiontitle="{{#header}}{{name}}{{/header}}"
will fix the issue.