Extra character at end of content
It seems there is an extra character being added at the end of the content of my textarea when it changes to the whizzywig editor.
Here's a chunk of the code:
<td align="right" valign="top">Summary:</td>
<td><textarea name="summary" id="summary" style="width:600px; height:100px;">[<%=rstobj("summary")%>]</textarea>
<script type="text/javascript">
buttonPath = "/whizzywig/";
makeWhizzyWig("summary", "fontname fontsize | bold italic underline | left center right | number bullet indent outdent newline undo redo | color hilite rule | link table | word clean html spellcheck");
</script>
</td>
The brackets around <%=rstobj("summary")%> are there for testing purposes. The text within the editor has an extra character at the end of it, past the ]. It doesn't appear to be a space because it stays there even when I trim the contents before saving back to the database.
Any idea what is causing this and how I might make it go away?
Thanks.