Skip to content

Commit

Permalink
Merge pull request #3199 from notbakaneko/fix/translated-markup-no-es…
Browse files Browse the repository at this point in the history
…cape

Don't escape trans where markup is passed by param
  • Loading branch information
peppy committed May 15, 2018
2 parents b48003b + 8cc4caa commit cf218a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions resources/views/packs/index.blade.php
Expand Up @@ -38,8 +38,8 @@
];
@endphp
<p class="beatmap-packs__important">{{ trans('beatmappacks.index.blurb.important') }}</p>
<p>{{ trans('beatmappacks.index.blurb.instruction._', ['scary' => $scaryTexts[0]]) }}</p>
<p>{{ trans('beatmappacks.index.blurb.note._', ['scary' => $scaryTexts[1]]) }}</p>
<p>{!! trans('beatmappacks.index.blurb.instruction._', ['scary' => $scaryTexts[0]]) !!}</p>
<p>{!! trans('beatmappacks.index.blurb.note._', ['scary' => $scaryTexts[1]]) !!}</p>
</div>
</div>
<ul class="page-mode">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/store/checkout.blade.php
Expand Up @@ -54,7 +54,7 @@
<div class="alert alert-danger">
<p>
{{ trans('store.checkout.pending_checkout.line_1') }}<br>
{{ trans('store.checkout.pending_checkout.line_2', ['link' => $cancelLink]) }}
{!! trans('store.checkout.pending_checkout.line_2', ['link' => $cancelLink]) !!}
</p>
</div>
@endif
Expand Down

0 comments on commit cf218a2

Please sign in to comment.