Skip to content

Commit

Permalink
Issue #3764: Fixed template variable handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter authored and svenoe committed Oct 2, 2024
1 parent 8fc2ab2 commit 0676445
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<span><i class="fa fa-building-o"></i> [% Translate("Select") | html %]</span>
</button>
[% IF Data.DescriptionShort %]
<div class="FieldExplanation">[% Data.DescriptionShort %]</div>
<div class="FieldExplanation">[% Data.DescriptionShort | html %]</div>
[% END %]
[% IF !Readonly %]
<div id="TemplateSelectionCustomerID" class="Hidden">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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 0676445

Please sign in to comment.