mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
don't escape confirmation mail templates.
This patch would fix at least a part of issue #381 and #420, if it would be applied to all necessary blade files. This could be a security problem as user now maybe can enter malicious code? I am not smart enough to know these php internals.
This commit is contained in:
parent
5bf287f51a
commit
d30f14d5d3
@ -1,7 +1,7 @@
|
|||||||
{{ trans('texts.confirmation_header') }}
|
{!! trans('texts.confirmation_header') !!}
|
||||||
|
|
||||||
{{ $invitationMessage . trans('texts.confirmation_message') }}
|
{!! $invitationMessage . trans('texts.confirmation_message') !!}
|
||||||
{!! URL::to("user/confirm/{$user->confirmation_code}") !!}
|
{!! URL::to("user/confirm/{$user->confirmation_code}") !!}
|
||||||
|
|
||||||
{{ trans('texts.email_signature') }}
|
{!! trans('texts.email_signature') !!}
|
||||||
{{ trans('texts.email_from') }}
|
{!! trans('texts.email_from') !!}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user