I'm going to head off and look at the source to see if I can find what's causing this, but someone here's probably run into this before so... I'm doing a normal form_for:
<% form_for(@myobj) do |f| %>
But the URL it's generating is:
form action="/myobjs/%23%3CMyobj:0x105f03ec0%3E" class="edit_myobj" id="edit_myobj_13" method="post">
When it should of course be generating the action "/myobjs/13" if the id==13. I've verified that the object is returning its id correctly, and of course form_for is actually setting the form's id appropriately using the id (as shown above), so... I'm not sure yet what form_for uses to generate the action URL for the form. Anyone out there run into this before and have a solution?
Thanks in advance...