Remove htmlspecialchars from guestbook display
It was already run when the entry was recorded
This commit is contained in:
parent
7c16dc53b5
commit
e627033600
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@
|
|||
<table class="gb_entry"><tr><td>
|
||||
Name: {{ $entry->name }}<br/>
|
||||
Date: {{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }}<br/><br/>
|
||||
{{ htmlspecialchars($entry->message) }}
|
||||
{{ $entry->message }}
|
||||
</td></tr></table>
|
||||
@endforeach
|
||||
@stop
|
||||
|
|
Loading…
Reference in a new issue