instead of
<tr></tr>
<tr></tr>
<th><br /><br /></th>
<form method="POST" name="itemSynopsis"
onsubmit="return submit_once()"
enctype="multipart/form-data"
class="second_comment_box" action="issue422">
<tr>
<td colspan="3">
<textarea name="@note" wrap="hard" rows="5" cols="80"></textarea>
</td>
</tr>
<tr>
<td>
<input type="hidden" name="@template" value="item">
</td>
<td colspan="3">
<input type="hidden" name="@lastactivity" value="2011-08-04.13:49:10">
<input type="hidden" name="@action" value="edit">
<input type="submit" name="submit_button" value="Add Comment">
, something like
<tr></tr>
<tr></tr>
<tr>
<td colspan="3">
<textarea class="second_comment_box" name="@note" wrap="hard" rows="5"
cols="80"></textarea>
</td>
</tr>
<tr>
<td>
<input type="hidden" name="@template" value="item">
</td>
<td colspan="3">
<input type="hidden" name="@lastactivity" value="2011-08-04.13:49:10">
<input type="hidden" name="@action" value="edit">
<input type="submit" name="submit_button" value="Add Comment">
may do it (I hope). |