Remove htmlspecialchars from guestbook display

It was already run when the entry was recorded
This commit is contained in:
floppydiskette 2023-07-16 22:02:54 +01:00 committed by GitHub
parent 7c16dc53b5
commit e627033600
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@
<table class="gb_entry"><tr><td>
Name:&nbsp;{{ $entry->name }}<br/>
Date:&nbsp;{{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }}<br/><br/>
{{ htmlspecialchars($entry->message) }}
{{ $entry->message }}
</td></tr></table>
@endforeach
@stop