I just encountered a very strange problem. I'm editing page with a form in HTML mode and when the page is rendered, an extra
is being inserted before every <input> tag. The relevant html source of the page looks like this:
<tr valign="top">
<td>Yes <input name="Question1_1" type="radio" value="Yes"> No <input name="Question1_1" type="radio" value="No"> </td>
</tr>
And the resulting page source from the browser is this:
<tr valign="top">
<td>Yes<br />
<input name="Question1_1" type="radio" value="Yes"> No<br />
<input name="Question1_1" type="radio" value="No"> </td>
</tr>
There's nothing about form or input in my style sheet. Somehow a space is getting turned into a
. Any ideas?