In plugins\content\pagebreak\tmpl\toc.php the line <?php echo $listItem->title; ?>
is missing the function htmlspecialchars.
It should be modified to: <?php echo htmlspecialchars($listItem->title); ?>
In Joomla 5 and 6.
Labels |
Removed:
?
|
Labels |
Added:
No Code Attached Yet
|
@peterhulst I've allowed myself to edit the description and add the missing tick marks ` to quote code.
missing in previous report:
echo $listItem->title; should be: echo htmlspecialchars($listItem->title);
This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/46184.