Skip to content
Snippets Groups Projects
Commit 475cf322 authored by Thomas Lake's avatar Thomas Lake :wrench:
Browse files

Tweaks and escaping things properly

parent 0ddbc813
No related branches found
No related tags found
No related merge requests found
...@@ -30,15 +30,15 @@ ...@@ -30,15 +30,15 @@
<div class="row"> <div class="row">
<label for="title">Title</label> <label for="title">Title</label>
<span class="textinput"><input type="text" name="title" width="200" value="{$book.title}" /></span> <span class="textinput"><input type="text" name="title" width="200" value="{$book.title|escape}" /></span>
</div> </div>
<div class="row"> <div class="row">
<label for="author">Author</label> <label for="author">Author</label>
<span class="textinput"><input type="text" name="author" value="{$book.author}" /></span> <span class="textinput"><input type="text" name="author" value="{$book.author|escape}" /></span>
</div> </div>
<div class="row"> <div class="row">
<label for="publisher">Publisher</label> <label for="publisher">Publisher</label>
<span class="textinput"><input type="text" name="publisher" value="{$book.publisher}" /></span> <span class="textinput"><input type="text" name="publisher" value="{$book.publisher|escape}" /></span>
</div> </div>
<div class="row"> <div class="row">
<label for="comments">Comments</label> <label for="comments">Comments</label>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment