Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fix #2366
  • Loading branch information
JC5 committed Aug 2, 2019
1 parent 692b256 commit 2ddf48f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/v1/reports/audit/report.twig
Expand Up @@ -42,7 +42,7 @@
<em>
{{ trans('firefly.no_audit_activity',
{
account_name: account.name,
account_name: account.name|escape,
url: url,
start: start.formatLocalized(monthAndDayFormat),
end: end.formatLocalized(monthAndDayFormat),
Expand All @@ -55,7 +55,7 @@

{{ trans('firefly.audit_end_balance',
{
account_name: account.name,
account_name: account.name|escape,
url: url,
end: auditData[account.id].end,
balance: formatAmountByAccount(account,auditData[account.id].endBalance)
Expand All @@ -65,7 +65,7 @@
<p style="padding:10px;">
{{ trans('firefly.audit_end_balance',
{
account_name: account.name,
account_name: account.name|escape,
url: url,
end: auditData[account.id].dayBefore,
balance: formatAmountByAccount(account, auditData[account.id].dayBeforeBalance)
Expand Down

0 comments on commit 2ddf48f

Please sign in to comment.