Skip to content

Commit

Permalink
Fix overzealous escaping with smarty default escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
eileenmcnaughton committed Nov 30, 2021
1 parent 0094bba commit 5de5015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/CRM/common/formButtons.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{capture assign=linkname}name="{$linkButton.ref}"{/capture}
{else}{capture assign=linkname}name="{$linkButton.name}"{/capture}
{/if}
<a class="button" {$linkname} href="{crmURL p=$linkButton.url q=$linkButton.qs}" {$accessKey} {$linkButton.extra}><span>{$icon}{$linkButton.title}</span></a>
<a class="button" {$linkname} href="{crmURL p=$linkButton.url q=$linkButton.qs}" {$accessKey} {$linkButton.extra}><span>{$icon|smarty:nodefaults}{$linkButton.title}</span></a>
{/foreach}
{/if}

Expand Down

0 comments on commit 5de5015

Please sign in to comment.