mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-02 23:24:35 -04:00
Fixes for encoded entities in client portal
This commit is contained in:
parent
29b9ac2894
commit
9dfbeb2beb
@ -156,7 +156,7 @@ span {
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div id="notes" class="py-10 border-b-2 border-fuschia-600" x-show="show_notes">
|
<div id="notes" class="py-10 border-b-2 border-fuschia-600" x-show="show_notes">
|
||||||
{{ strip_tags($entity->public_notes) }}
|
{!! html_entity_decode($entity->public_notes) !!}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -171,7 +171,7 @@ span {
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_terms">
|
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_terms">
|
||||||
{{ strip_tags($entity->terms) }}
|
{!! html_entity_decode($entity->terms) !!}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -186,7 +186,7 @@ span {
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_footer">
|
<div id="terms" class="py-10 border-b-2 border-fuschia-600" x-show="show_footer">
|
||||||
{{ strip_tags($entity->footer) }}
|
{!! html_entity_decode($entity->footer) !!}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user