views:

16

answers:

1

I have multiple forms in my rails app that were working perfectly up until last night. With no actual modification of anything to do with forms, none of my form tags are even showing up in the HTML anymore.

Is there any quick fix for this, or any known reason this would occur? Thanks!

A: 

I found the solution!

There were no errors, but what happened was I had two helper methods I created last night, one or both of them were conflicting with names used in form generation.

My methods were concat and tag_length, which both seem likely to have interfered :p

Lowgain