Skip to content

Commit

Permalink
Added HTML filter to ProcessManagement/SLA template.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennykorsukewitz authored and jepf committed Oct 2, 2024
1 parent ee8cd0f commit d2e73fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 6.5.11 2024-??-??
- 2024-10-02 Added HTML filter to ProcessManagement/SLA template. Converts the characters <, >, & and " to &lt;, &gt;, &amp;, and &quot; respectively, protecting them from being interpreted as representing HTML tags or entities.
- 2024-09-26 Removed regex from Kernel::System::HTMLUtils::DocumentCleanup that could lead to a security issue. It replaced HTML of Microsoft Word. Thanks for reporting to Emin Yazi (@eyazi), Efflux.
- 2024-09-25 Fixed link to customer information center in agent ticket zoom.
- 2024-09-24 Updated CKEditor to version 4.25.1-znuny.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div id="[% Data.FieldID | html %]Error" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
<div id="[% Data.FieldID | html %]ServerError" class="TooltipErrorMessage"><p>[% Translate("This field is required.") | html %]</p></div>
[% RenderBlockStart("rw:SLA:DescriptionShort") %]
<div class="FieldExplanation">[% Data.DescriptionShort %]</div>
<div class="FieldExplanation">[% Data.DescriptionShort | html %]</div>
[% RenderBlockEnd("rw:SLA:DescriptionShort") %]
</div>
<div class="Clear"></div>
Expand Down

0 comments on commit d2e73fb

Please sign in to comment.