What do you get if you use form_tag instead of form_for? You'll need to alter the synax of your form a little. For example
Code:
1: <% form_tag do %>
2: <p>
3: name:<br />
4: <%= text_field(:story, :name) %>
5: </p>
6: <p>
7: link:<br />
For this test you could comment out the other form elements if you don't want to modify them too:
Code:
<%= f.text_field :another %>
Can be commented out by putting a hash between the percentage and equals signs:
Code:
<%#= f.text_field :another %>
That will tell us whether this problem is specific to the form_for method.
Bookmarks