in which line do you get the error? probably here: @child = Child.new(params[:child])
or here: @filter = Filtersetting.new(params[:filtersetting]) use the debugger (set it before that line) to see what's in your params-hash. there is probably a key like :1 => "something" then you can find out, where that attribute is set and correct your view. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

