Fixed a problem in the edit template that prevented posts from being saved.

This commit is contained in:
Raoul Snyman 2010-02-22 23:20:54 +02:00
parent d2bfec7c2e
commit 4080489478
1 changed files with 3 additions and 3 deletions

View File

@ -7,15 +7,15 @@
<fieldset>
<div class="form-item">
<!-- <label for="post-title">Title:</label> -->
<input type="text" name="title" value="${c.post.title}" id="post-title" class="form-text" />
<input type="text" name="post-title" value="${c.post.title}" id="post-title" class="form-text" />
</div>
<div class="form-item">
<!-- <label for="post-body">Body:</label> -->
<textarea name="body" id="post-body" class="form-textarea">${c.post.body}</textarea>
<textarea name="post-body" id="post-body" class="form-textarea">${c.post.body}</textarea>
</div>
<div class="form-item">
<label for="post-tags">Tags:</label>
<input type="text" name="tags" id="post-tags" class="form-text" value="${c.post.tags_list}" />
<input type="text" name="post-tags" id="post-tags" class="form-text" value="${c.post.tags_list}" />
</div>
<div class="form-item">
<label for="post-authored">Authored:</label>