Skip to content

Commit

Permalink
bugfix: avoid XSS in netdev ip forms (LMS #1910)
Browse files Browse the repository at this point in the history
  • Loading branch information
chilek committed Oct 19, 2021
1 parent cdadd9f commit 63c2f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/default/promotion/promotionschemas.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</thead>
<tbody>
{foreach $promotion.schemas as $schema}
<TR class="highlight{if $schema.disabled} blend{/if}{if $schema.deleted} lms-ui-resource-deleted{/if}" data-name="{$schema.name}">
<TR class="highlight{if $schema.disabled} blend{/if}{if $schema.deleted} lms-ui-resource-deleted{/if}" data-name="{$schema.name|escape}">
<td data-target-url="?m=promotionschemainfo&id={$schema.id}" class="nobr">
<strong>{$schema.name|escape}</strong>
{if $schema.datefrom || $schema.dateto}
Expand Down

0 comments on commit 63c2f8e

Please sign in to comment.