Skip to content

Commit

Permalink
bugfix: avoid XSS in node group forms (LMS #1910)
Browse files Browse the repository at this point in the history
  • Loading branch information
chilek committed Jun 11, 2021
1 parent a82a9b5 commit 21173d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/default/node/nodegrouplist.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1>{$layout.pagetitle}</h1>
<tr class="highlight" data-nodegroup-id="{$nodegroup.id}" data-name="{$nodegroup.name}">
<td data-target-url="?m=nodegroupinfo&id={$nodegroup.id}">
{icon name="nodegroup"}
<strong>{$nodegroup.name}</strong>
<strong>{$nodegroup.name|escape}</strong>
<br>
{if $nodegroup.description}
{icon name="info"}
Expand Down

0 comments on commit 21173d4

Please sign in to comment.